[NTLUG:Discuss] ftp multiple files
Fred James
fredjame at concentric.net
Wed Jan 22 08:48:55 CST 2003
ftp -i <site>
where <site> is the remote host you wish to connect to.
Example:
ftp -i ftp.myfavoritesoftwaresite.org
(see man ftp)
terry wrote:
> What is the easiest way to download a large number of individual files?
>
> Via the browser, it appears you have to click on each one
> individually, tell it okay and all that.
> Just in terminal mode ftp you can use mget * but then you have to sit
> there and type y for each one. Right?
>
> What other option is there?
>
>
> _______________________________________________
> https://ntlug.org/mailman/listinfo/discuss
>
>
--
find . -type f | xargs file | grep -i text | cut -f1 -d: | xargs grep "..."
More information about the Discuss
mailing list