当前位置: 技术问答>linux和unix
怎样用shell脚本写一个FTP程序
来源: 互联网 发布时间:2015-06-03
本文导语: 我现在有这样一个需求,每次我得程序更新好以后,生成得可执行文件要COPY到其他几个机器上,都是REDHAT 9 ,我想写个脚本,每次在MAKE完以后通过FTP上传到其他机器,因为有很多得限制,所以不考虑使用SMB或者是CVS,请各位帮...
我现在有这样一个需求,每次我得程序更新好以后,生成得可执行文件要COPY到其他几个机器上,都是REDHAT 9 ,我想写个脚本,每次在MAKE完以后通过FTP上传到其他机器,因为有很多得限制,所以不考虑使用SMB或者是CVS,请各位帮忙
|
天,刚看见有人问,这又来一个
http://expert.csdn.net/Expert/topic/2664/2664112.xml?temp=.3564722
http://expert.csdn.net/Expert/topic/2664/2664112.xml?temp=.3564722
|
写一个类似下面的脚本,假设叫ftp.script
###################
Open ***.***.***.***
User username password
Binary
Cd *** (destination directory in remote server)
# a set of operations
Put local-file remote-file
…
put local-file remote-file
bye
###################
然后把下面一行加在你希望的脚本中:
ftp –vni
###################
Open ***.***.***.***
User username password
Binary
Cd *** (destination directory in remote server)
# a set of operations
Put local-file remote-file
…
put local-file remote-file
bye
###################
然后把下面一行加在你希望的脚本中:
ftp –vni