http://www.perlmonks.org?node_id=212951


in reply to FTP Unix -> NT

You could use a shell script for this ...
#!/bin/sh HOST=123.123.123.123 USER=username PASS=password ftp -n <<EOT user $USER $PASS cd /public_ftp bin put mystuff.txt bye EOT