11 lines
309 B
Text
11 lines
309 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# bigfiles - a system for getting big files to the server efficiently
|
||
|
# part of ejv2.cc -- by Ethan Marshall in 2024
|
||
|
|
||
|
REMOTEHOST="ejv2.cc" \
|
||
|
LOCALDIR=${LOCALDIR:-"big"} \
|
||
|
REMOTECACHE=${REMOTECACHE:-"/usr/share/bigfiles"} \
|
||
|
REMOTEDIR=${REMOTEDIR:-"/var/www/html"} \
|
||
|
./bigfiles.awk bigfiles.tsv
|