Maybe it can help you to do automatic ftp from your shell script
ftp -in IP_ADDRESS << EOF
user username password
prompt off
cd $destination_dir
lcd $local_dir
put $files
bye
EOF
January 27, 2008 by hnawri
Maybe it can help you to do automatic ftp from your shell script
ftp -in IP_ADDRESS << EOF
user username password
prompt off
cd $destination_dir
lcd $local_dir
put $files
bye
EOF