用 tar 归档隐藏目录

发布于 2024-10-09 18:15:04 字数 308 浏览 10 评论 0原文

目录 mydir 上的 tar 将归档隐藏文件和隐藏子目录,但使用 mydir 中的 tar >* 通配符不会。这是已知的不一致或错误吗?

编辑:附加信息。使用 * 通配符从 mydir 中的 tar 不会“看到”也不会归档隐藏文件和隐藏子目录直接目录。但是,在 mydir 的非隐藏子目录中,隐藏文件和隐藏子目录将被归档。换句话说,隐藏的对象将被存档在目录树的更深处。

tar on a directory mydir will archive hidden files and hidden subdirectories, but tar from within mydir with a * wildcard will not. Is this a known inconsistency or bug?

Edit: Additional information. tar from within mydir with a * wildcard will not "see" nor archive hidden files and hidden subdirectories in the immediate directory. However, in the non-hidden subdirectories of mydir hidden files and hidden subdirectories will be archived. In other words, deeper in the directory tree the hidden objects will be archived.

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

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

发布评论

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

评论(7

冧九 2024-10-16 18:15:04

使用通配符将不起作用。你必须指定 . (当前目录)如果您指的是包括隐藏文件的完整目录。你可以做

tar -cvpzf test.tgz .

With wildcard it will not work. You have to specify . (current directory) if you mean full directory including hidden files. You can do

tar -cvpzf test.tgz .
怪我太投入 2024-10-16 18:15:04

答案是 * 通配符由 shell 处理,它只是不会扩展到以点开头的内容。另一个通配符 ? 也不会扩展到以点开头的内容。感谢 Keith 指出是 shell 进行了扩展,因此它与 tar 无关。

如果您使用shopt -s dotglob,那么扩展将包括.filename之类的内容。感谢安迪。

使用shopt -u dotglob 将其关闭。

切换 dotglob 选项不会更改 ls 本身。相反,它只是改变扩展行为,如 ls * 所示。

编辑:我的建议在下面的评论中。

The answer is that the * wildcard is handled by the shell and it just does not expand to things that start with a dot. The other wildcard ? also does not expand to things that start with a dot. Thanks to Keith for pointing out it is the shell that does the expansion and so it has nothing to do with tar.

If you use shopt -s dotglob then expansion will include things like .filename. Thanks to Andy.

Use shopt -u dotglob to turn it off.

Switching the dotglob option does not change ls itself. Rather it just changes expansion behaviour as exhibited in something like ls *.

Edit: My recommendations are in a comment below.

机场等船 2024-10-16 18:15:04

您可以使用:

tar -cvpzf test.tgz * .??*

但是,这仅适用于名称 > 的隐藏文件。 2(防止出现“.”和“..”)

You can use:

tar -cvpzf test.tgz * .??*

But, this works only for hidden files with names > 2 (to prevent '.' and '..')

べ繥欢鉨o。 2024-10-16 18:15:04

您可以使用以下方法压缩当前目录中的所有文件/文件夹(包括 .hidden):

tar -zcvf compressed.tgz `ls -A -1`

最后一个参数是要压缩的文件夹。如果您传递 ls -A -1 ,则您将传递当前目录中除 ... 之外的所有文件夹。
对于子目录,.hidden 文件默认已包含在压缩中。

You can compress all the files / folders in your current directory (including .hidden) by using:

tar -zcvf compressed.tgz `ls -A -1`

The last argument are the folders you want to compress. If you pass it ls -A -1 , you are passing it all folders in your current directory but . and .. .
When it comes to subdirectories, .hidden files are already included in the compression by default.

烟酉 2024-10-16 18:15:04

shell 扩展了通配符,因此 tar 甚至看不到它。如果您想这样做,则必须显式添加它们。 (<代码>.*)。然而,最常见的是压缩单个目录,这样当您解压缩时,所有内容都会到达同一个位置。

The shell expands the wildcards so tar doesn't even see it. You have to add them explicitly if you want to do that. (.*). However, it's most common to tar a single directory so that when you untar it all goes to the same place.

离去的眼神 2024-10-16 18:15:04
shopt -s dotglob

这将使

shopt -s dotglob

this will make the

旧竹 2024-10-16 18:15:04

这将压缩所有隐藏文件和目录

tar -cvzf hidden.tgz `ls -a | egrep [.][^.]+`

This will tar all hidden files and directories

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