Why is it when I retrieve a file from an ftp server through the Unix shell (tcsh) the file is always corrupted. Usually I'm getting a .sit file, and stuffit says it can't work with it because it is not a compressed file. When I get the very same file using the FTP app "Transmit" the file works perfectly. Here's my tcsh transcript:
ftp> get Finished.sit
local: Finished.sit remote: Finished.sit
227 Entering Passive Mode (XXX,XXX,XXX,XX,X,XX).
125 Data connection already open; Transfer starting.
100% |************************************************* **| 8878 KB 240.19 KB/s 00:00 ETA
226 Transfer complete.
WARNING! 35093 bare linefeeds received in ASCII mode.
File may not have transferred correctly.
9092031 bytes received in 00:37 (239.84 KB/s)
ftp> close
221
ftp> exit
I suspect it is something to do with the "ASCII" mode, since a .sit file is a binary file. Or something else?