http://qs321.pair.com?node_id=448764


in reply to ftp script problem .. bad interpreter?

This is most likely the result of a file with dos newline encoding being executed on a Unix machine. The easy way to fix it is to use the dos2unix command. It will change the newline encoding to the Unix format and the script should run fine.
dos2unix filename


davidj

Replies are listed 'Best First'.
Re^2: ftp script problem .. bad interpreter?
by Anonymous Monk on Apr 18, 2005 at 09:46 UTC
    Thanks DavidJ, much appreciated :)