删除 tar 中的文件,带有通配符和异常
我有一个 tarball,我想删除其中的所有 .tcl、.bat 、 .log 文件除了 pkgIndex.tcl。
如果我这样做,
tar --delete -f mytarball.tar --wildcards *{.tcl,.log,.bat}
我的 pkgIndex.tcl 将被删除,如何将其作为例外放入我的模式通配符中?
刚刚尝试过
tar --delete -f mytarball.tar --wildcards *{.tcl,.log} --exclude=*pkgIndex.tcl
,但
tar --delete -f mytarball.tar --wildcards *{.tcl,.log} --exclude=pkgIndex.tcl
没有成功...
I have a tarball, and i want to remove all .tcl, .bat , .log files except pkgIndex.tcl in it.
if i do
tar --delete -f mytarball.tar --wildcards *{.tcl,.log,.bat}
my pkgIndex.tcl will be deleted, how to put that as exception in my pattern wildcard?
Just tried
tar --delete -f mytarball.tar --wildcards *{.tcl,.log} --exclude=*pkgIndex.tcl
and
tar --delete -f mytarball.tar --wildcards *{.tcl,.log} --exclude=pkgIndex.tcl
To no avail...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来当您使用 --delete 时,GNU tar 会忽略 --exclude 。
您可以执行 tar tf mytarball.tar --wildcards *{.tcl,.log} | grep -v pkgIndex.tcl | | grep -v pkgIndex.tcl | tar --delete -f mytarball.tar -T - 代替。这将列出所有匹配 *.tcl 或 *.log 的文件,grep 查找除 pkgIndex.tcl 之外的所有文件,并将列表通过管道返回到 tar,这将从 tarball 中删除这些文件。
Looks like GNU tar ignores --exclude when you use --delete.
You can do
tar tf mytarball.tar --wildcards *{.tcl,.log} | grep -v pkgIndex.tcl | tar --delete -f mytarball.tar -T -
instead. That will list all of the files matching *.tcl or *.log, grep for everything but pkgIndex.tcl, and pipe the list back into tar which will remove those files from the tarball.