Mail Archives: djgpp/1994/03/17/04:59:26
>
> Could someone upload sally to an another anon ftp site like oakland? Clarkson
> seems to have a 5 user limit - I haven't been able to get on it in the last
> 2 days.
>
Usually, I used 'at' and a background ftp to get files for me if I got
caught by the traffic.
The following example is good for UNIX environment.
+++++++++++++++++++++++++++++++++++++++++++++++++++
Firstly, write a shell script file like
file: getfile.ftp
------------------------------------
ftp -n omnigate.clarkson.edu << EOF
user ftp username@
prompt
bin
cd pub/msdos/djgpp/pub
get fsdb091a.zip
quit
EOF
exit
---------------------------------------
and then, just type command like
at 10:00<return>
sh getfile.ftp<return>
<ctrl-D>
If you cannot use at on your system, ask your system administrator, or
use 'nohup sleep <# of seconds>; sh getfile.ftp &' to do it.
Tein
- Raw text -