发新话题
打印

tar操作对象之文件列表

tar操作对象之文件列表

Exclude files using multiple patterns

tar -czf backup.tar.gz --exclude=PATTERN1 --exclude=PATTERN2 ... /path/to/backup
Exclude files using an exclude file filled with a list of patterns

tar -czf backup.tar.gz -X /path/to/exclude.txt /path/to/backup
Exclude files using tags by placing a tag file in any directory that should be skipped

tar -czf backup.tar.gz --exclude-tag-all=exclude.tag /path/to/backup

指定文件列表:-T

参考:
https://stackoverflow.com/questions/984204/shell-command-to-tar-directory-excluding-certain-files-folders

TOP

发新话题