<Martizpan2> hey, anyone can see that script ? http://pastebin.com/m7ccfb6d6 , im trying to upload file to ftp using ssh... its not working
Contents from pastebin.
#!/bin/sh
ftp -n <<END
open DESTINATIONSERVER
binary
user USERID PASSWORD
put /var/www/file.php
bye
END