Shell脚本调用ftp上传文件

Shell脚本调用ftp上传文件

1.脚本如下

ftp -n<<!

open x.x.x.x

###x.x.x.x为ftp地址

user username password

###username为ftp用户名 password为用户名密码

binary

###binary为二进制传输

cd /report

###切换到ftp目录

lcd /home/oracle/report/export

###切换到本地linux目录

prompt

put report_data_`date +%Y%m%d`.dmp

###上传指定文件

put expdp_`date +%Y%m%d`.log

put `date +%Y%m%d`_scpflagfile

put crontab_78_flag.txt

close

bye

!

上一篇:使用 windows 下的 secureCRT 软件的 通过 sftp 上传和下载文件到远端 linux 设备


下一篇:ftp上传或下载文件工具类