#yyds干货盘点#AIX系统下的FTP上传,下载脚本
Posted 散人君莫笑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#yyds干货盘点#AIX系统下的FTP上传,下载脚本相关的知识,希望对你有一定的参考价值。
下载脚本
ftp -v -n *.*.*.*<<EOF
user oracle 123456
binary
cd /home/data
lcd /home/databackup
prompt
mget *
close
bye
EOF
上传脚本
tar -cvf /soft/xt/`date +%Y%m%d`ftp.tar /OAWEB/webapp/ >/soft/xt/tar.log
ftp -v -n *。*。*。* << EOF
user pys 12345678
binary
hash
cd /10.10.8.71
lcd /soft/xt/
prompt
mput *ftp.tar
bye
EOF >/soft/xt/ftp.l
以上是关于#yyds干货盘点#AIX系统下的FTP上传,下载脚本的主要内容,如果未能解决你的问题,请参考以下文章