Sunday, March 4, 2007

Automate your FTP login-ubuntu

#!/usr/bin/env expect
set username yourUsername
set pass yourPasswd
set host theHostspawn
ftp ${username}@${host}
expect "Password:"
send "${pass}\r"
expect "ftp> "
interact

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home