Linux FTP備份文件

FTP.shbash

#!/bin/bash
ftp -n <<- EOF
open <FTP Server IP地址>
user < FTP用戶名> <FTP密碼>
cd /full
bin
lcd /data/full
prompt
mget *
close
bye
EOFide

del.shcode

#!/bin/bash
disk=df -h|grep data|awk '{print $5}'|sed 's/.$//'
if [ "$disk" -gt "85" ];then
find /data/diff/ -type f -mtime +15 -exec rm {} \;
find /data/full/
-type f -mtime +15 -exec rm {} \;
ficrontab

使用crontab -e命令,加入定時任務get

30 00 /root/del_days.sh &
00 19
/root/full_download.sh &it

相關文章
相關標籤/搜索