tar 排除标签

发布于 2024-08-27 04:10:28 字数 424 浏览 1 评论 0原文

我有以下文件夹结构: myFoldertestFolder 其下有相同的文件夹,我只想从 testFolder 中排除 my1 code> 而不是 myFolder

myFolder
+---my1 
+---my2
+---my3

testFolder
+---my1
+---my2
+---my3

我尝试在创建 tar 文件时使用排除标签以及包含的文件夹。 这就是我所拥有的,但它似乎不起作用。

tar -cvf base.tar "/sam/myFolder" "/sam/testFolder" --exclude="/sam/testFolder/my1"

I have the following folder structure: myFolder and testFolder have same folders underneath it and I want to exclude only my1 from testFolder and not myFolder.

myFolder
+---my1 
+---my2
+---my3

testFolder
+---my1
+---my2
+---my3

I am trying to use exclude tag along with included folders while creating a tar file.
This is what i have, but it does not seem to work.

tar -cvf base.tar "/sam/myFolder" "/sam/testFolder" --exclude="/sam/testFolder/my1"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

萌︼了一个春 2024-09-03 04:10:28

我不是 Perl 技术人员。这是我经过一番研究后发现的。

命令是正确的。唯一的问题是路径。我们需要小心相对路径。

文件夹结构:D:\tools\Packet\sam\

D:\tools\Packet>tar -pcvf base.tar "sam/myFolder" "sam/testFolder" --exclude "sam/testFolder/my1"

-cvf
-pcvf
两者都工作正常。

I am not a techie in perl. This is what i found after a bit of research.

The command was correct. The only problem was with the paths. we need to be careful with the relative paths.

folder structure: D:\tools\Packet\sam\

D:\tools\Packet>tar -pcvf base.tar "sam/myFolder" "sam/testFolder" --exclude "sam/testFolder/my1"

-cvf
-pcvf
both work fine.

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