分类:
2010-12-05 15:54:48
脚本一:
local_dir="/home/"
remote_dir="/home/test/"
cd /home
tar cvf file.tar b
(
host="testhost"
username="root"
password="root"
echo "
open $host
user $username $password
binary
cd $remote_dir
lcd $local_dir
put file.tar
close
"
) | ftp -i -n
exit
脚本二:
#!/usr/bin/sh
cd /data
tar cvf uxfile.tar uxfile.dat
ftp -n 192.168.1.1 <user admin passwd
binary
put uxfile.tar
bye
!
chinaunix网友2010-12-07 09:59:08
很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com