Guest User

Untitled

a guest
Mar 21st, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #!/bin/bash
  2. # 通过lftp同步范例
  3. echo Script start at: `date +%Y-%m-%d %H:%M:%S`
  4. HOST='your_ip'
  5. USER='user_name'
  6. PASS='pass_word'
  7. LCD='/home/your_name/hkftp'
  8. RCD='/'
  9. /usr/sbin/lftp -u $USER,$PASS -e "mirror --delete --only-newer --verbose $RCD $LCD" $HOST
  10. echo Script end at: `date +%Y-%m-%d %H:%M:%S`
Add Comment
Please, Sign In to add comment