2009年3月27日星期五

non-interactive FTP --bash shell

好久以前写的东西,无意间找到了,可以跑的bash 环境下:

#!/bin/bash  

cd /src-work-directory
ftp -n<< !
open  destIP 
user UserName  UserPassword
binary
prompt off
cd /dest-work-directory
mput *.pdf
mput *.doc
mput *.ppt
mput *.xls
mput *.txt
mput *.rar
mput *.zip
close
bye
!


纪录一下,备忘!

没有评论:

发表评论