expect

#!/usr/bin/expect
spawn sftp -P 2222 afp@trophywife.com
expect "password:"
send "X\n"
expect "sftp>"
send "exit\n"
interact%