Re: X Code for Download
Re: X Code for Download
- Subject: Re: X Code for Download
- From: Scott Thompson <email@hidden>
- Date: Wed, 29 Oct 2003 16:54:05 -0600
On Oct 29, 2003, at 2:05 PM, Bryan Pietrzak wrote:
On Oct 29, 2003, at 1:17 AM, j o a r wrote:
The simplest thing is to do connect using the ftp command line tool
and do a "mget *", nothing beats that. Rock solid, works every time.
I assume that graphical FTP clients can do a mget equivalent as well,
but I haven't tried one in a long time so I wouldn't know.
I use "curl" from the command line to grab the list of files in the
directory:
curl <url to directory here> | awk '{ print $9}' > filestoget
and then a script something like
foreach file (`cat filestoget`)
if ! -e $file then
curl -O <url to Directoryhere>/$file
endif
end
to get the individual files.
Kinda like the ftp "mget *" thing really only it requires a lot more
typing and is more error prone :-)
Scott
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.