如何从终端中的 tar 文件中提取目录内的文件?

发布于 2024-09-01 21:04:19 字数 158 浏览 5 评论 0原文

我只想提取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云朵有点甜 2024-09-08 21:04:19

该命令

tar xf tarfile.tar /home/parent_dir/child_dir

只会提取 child_dir 及其下属目录中的文件。

如果 /home/parent_dir/child_dir 不是您想要的位置,GNU tar 提供了一个 --transform 选项,其用法如下:

tar  --transform 's,/home/parent_dir/child_dir,foo,' --show-transformed -xf tarfile.tar

它将把本来应该进入 /home/parent_dir/child_dir 的文件放入 ./foo 相反。

The command

tar xf tarfile.tar /home/parent_dir/child_dir

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:

tar  --transform 's,/home/parent_dir/child_dir,foo,' --show-transformed -xf tarfile.tar

which will put the files that would have gone into /home/parent_dir/child_dir into ./foo instead.

七堇年 2024-09-08 21:04:19

cd
tar xvf/.tar
例如
cd
tar cvf test.tar *
tar tf test.tar
查看您想要的文件夹。例如src/org
cd <您想要解压到的其他目录>
tar xvf ..\test.tar src/org
ls
现在,您将看到 tar 中您所在的目录,例如 src/org

cd <another_directory>
tar xvf <path_to_tar>/<tarfile>.tar <child_dir>
e.g.
cd <parent_directory>
tar cvf test.tar *
tar tf test.tar
see the folder you wanted. e.g. src/org
cd <some other directory you want to extract to>
tar xvf ..\test.tar src/org
ls
you'll now see the directory you were after from the tar e.g. src/org

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文