>I would suggest writing a small FTP program of your own >using the Net::FTP stuff. I've used it before and it does >everything FTP does. If you are going from a Unix box to >the Mac, then I'd suggest getting onto the Unix box and >doing a FIND command. Like so: > >%find . -name "*" -print > dir.out > >This will put all of the file names you want to download >(and their full pathname) into a file which you can then Actually it won't generate full pathnames, it'll generate pathnames relative to the current directory. Also, to generate the names of all files, "find . -print" is sufficient. No -name "*" argument is needed. (At least not with version of find that I'm familiar with.) -- Paul DuBois paul@snake.net Home Page: http://www.primate.wisc.edu/people/dubois Software: http://www.primate.wisc.edu/software ***** Want to unsubscribe from this list? ***** Send mail with body "unsubscribe" to mac-perl-request@iis.ee.ethz.ch