使用 tar 压缩网站内容时排除文件不起作用

使用 tar 压缩网站内容时排除文件不起作用

tar我正在尝试使用并排除一堆文件夹和文件来压缩网站的内容error_log,但它似乎不起作用,在处理时我仍然看到许多排除的文件正在处理。

我位于网站的根目录中,我正在尝试tar其中的所有内容public_html

这是我正在运行的命令:

tar -zcvf files-live.tgz public_html/ --exclude='public_html/cache' --exclude='public_html/uplimg' --exclude='public_html/images/listings' exclude='public_html/sets' exclude='public_html/manage' exclude='error_log'

边注: error_log存在于多个目录中,但我不想要任何其中包括。

我在这里做错了什么?

答案1

你用的exclude=不是--exclude=.

 tar -zcvf files-live.tgz public_html/ --exclude='public_html/cache' --exclude='public_html/uplimg' --exclude='public_html/images/listings' --exclude='public_html/sets' --exclude='public_html/manage' --exclude='error_log'

相关内容