我想在我的命令中有一个简单且有效的(多个)exclude
选项。rsync
可以说我将排除a file
和a directory
:
- /var/www/html/test.txt
- /var/www/html/images/
我所做的是:
rsync -avz --exclude="/var/www/html/test.txt" --exclude="/var/www/html/images/" /var/www/html root@xx.xx.xx.xx:/var/www
或者
rsync -avz --exclude=/var/www/html/test.txt --exclude=/var/www/html/images/ /var/www/html root@xx.xx.xx.xx:/var/www
或者
rsync -avz --exclude /var/www/html/test.txt --exclude /var/www/html/images/ /var/www/html root@xx.xx.xx.xx:/var/www
..
但是,这--exclude
是行不通的!
一切都会过去!
- 请问如何以这种简单的格式进行操作?
注意:我也不想使用外部排除列表文件。只需一个简单的命令即可。