如何从终端中的 tar 文件中提取目录内的文件?
我只想提取 tar 文件的文件夹内的文件
示例:
tar 文件的内容:
/home/parent_dir/child_dir/
我只想将 child_dir 内的文件提取到另一个目录
I want to extract only the files inside a folder of a tar file
Example:
Contents of tar file:
/home/parent_dir/child_dir/
I want to extract only the files inside child_dir to another directory
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该命令
只会提取
child_dir
及其下属目录中的文件。如果
/home/parent_dir/child_dir
不是您想要的位置,GNU tar 提供了一个--transform
选项,其用法如下:它将把本来应该进入
/home/parent_dir/child_dir
的文件放入./foo
相反。The command
will only extract files in
child_dir
and its subordinates.If
/home/parent_dir/child_dir
is not where you want them to be, GNU tar provides a--transform
option that would be used like:which will put the files that would have gone into
/home/parent_dir/child_dir
into./foo
instead.