Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要帮助来提取 tar 中的 tar 文件。我可以提取父焦油,然后解压子焦油,但试图查看是否有任何方法可以提取子焦油而不解压父焦油..
例如:
tar -tf parent.tar parent/ parent/child.tar parent/file1 parent/file2 parent/file3
您应该添加一个参数以匹配 tar 内的文件并使用-O或--to-stdout将数据提取到标准输出以通过管道传输并使用另一个 tar 来提取它:
-O
--to-stdout
tar -xOf parent.tar parent/child.tar | tar -x