一个自动登陆FTP服务器的shell

#!/bin/sh
ftp -n<<!
open 192.168.102.15
user USERNAME PASSWD
binary
prompt off
mput xxx.tar.gz
close
bye
!