篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Unix Linux Bash RSync备份从文件目录到备份目录相关的知识,希望对你有一定的参考价值。
#!/usr/bin/bash
# `--delete` flag: if a file is deleted from the file dir,
# the backed up copy is deleted from the backup dir
# `--archive` flag: `--recursive --links --perms --times --group --owner --devices`
# http://ss64.com/bash/rsync_options.html
rsync --archive --verbose --delete /home/nick/Documents/ /media/nick/BACKUP/Documents/
rsync --archive --verbose --delete /home/nick/Pictures/ /media/nick/BACKUP/Pictures/
以上是关于sh Unix Linux Bash RSync备份从文件目录到备份目录的主要内容,如果未能解决你的问题,请参考以下文章