ftp client in terminal is screwed up!!!

bolindilly

John Galt Member
i opened an ftp session with another mac os x machine. when i tried get certain files (.ppp and .pkg files), it said "xxx.xxx not a plain file" why would it do this? i can download the same files through fetch, so why can't i donwload them through the terminal? what is this whole plain file thing?

thanks,
BoLinDilly
 
.pkg and .app files are actually not ordinary files at all, but directories. When you control-click on one in the Finder, there is an option to see the contents. You can also cd into one in the terminal and look around.

These "bundles" are a whole new and cool (IMHO) feature in OS X - the ability to stick all the resources, graphics, default prefs, sound files and whatnot for a program into an "invisible" directory where they can't get lost. Now there's no need of these "some program ƒ" directories full of stupidly named files, where the program you want is just one of about fourty files in there. Also, I think Apple is trying to get rid of resource forks, because that led to so many files getting borked whenever there was any interaction with Windoze, Unix, or the internet. Now you essentially have to fetch the resource fork separately, rather than not being able to get it at all.

Fetch is clever enough, when you ask it to get a directory, to actually search down it and get everything inside it, so the illusion of a .app folder being a single file is preserved.

I'm not sure about the server on OS X, but some ftp servers are clever enough, when you ask for <directory_name>.tar.gz, to actually make .tar.gz of the directory's contents and send that to you - you might want to try that. (if it works, it will significantly reduce the size of the file, so it ought to be faster) Then you just have to decompress the file on your end, and the whole .app structure is restored.
 
Well....you could always tar or stuff it.
Then use Terminal to FTP.

Couple of extra commands, no bother...
 
Back
Top