共计 811 个字符,预计需要花费 3 分钟才能阅读完成。
这篇文章主要为大家展示了“gunzip 与 tar 如何结合使用”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让丸趣 TV 小编带领大家一起研究并学习一下“gunzip 与 tar 如何结合使用”这篇文章吧。
我们可以用 gunzip 结合 tar 命令从 tar 包里解出所有名为 test 的文件
gunzip -dc 2010-07-31.tar.gz |tar xvf – test.*
执行结果:
test.2010-07-31.00.192.168.1.231
test.2010-07-31.01.192.168.1.231
。。。。。
成功了,当然这个包里要有 test 名称的文件,否则出错。
另外 tar 是不支持解开时用通配字符 (*,?) 来找符合项目的:
tar -zxvf 1.tar.gz bin/a*
tar: Pattern matching characters used in file names. Please,
tar: use –wildcards to enable pattern matching, or –no-wildcards to
tar: suppress this warning.
tar: bin/a*: Not found in archive
tar: Error exit delayed from previous errors
发现出错了,除非你使用 –wildchards 搭配:
tar –wildcards -zxvf 1.tar.gz bin/a*
bin/ash
bin/awk
bin/arch
请注意传入通配字符时, 要使用 or 包起来,要不然会被 shell 先解释走了,那 tar 就看不到了。
补充一下, 关于 wildcards 参数在 REDHAT 9 里是没有的,RHEL AS4 里有.
以上是“gunzip 与 tar 如何结合使用”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注丸趣 TV 行业资讯频道!