在bash中,列出两种类型文件的正则表达式是什么?

发布于 2024-11-09 06:03:16 字数 182 浏览 0 评论 0原文

目录包含 .zip.rar 文件以及其他类型的文件。

要仅列出 .rar.zip 文件,有 ls *.zip *.rar

在 bash 中,如何将两种类型与一个匹配正则表达式?

A directory contains .zip and .rar files, and files of other type.

To list only .rar and .zip files, there is ls *.zip *.rar

In bash, how to match both types with one regex?

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

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

发布评论

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

评论(3

装迷糊 2024-11-16 06:03:16

您真的想要正则表达式吗?

这使用 * ("globbing") 和 {[...]} ("大括号扩展")。

$ ls *.{zip,rar}

对于许多人来说,另请参阅这个问题 ,还有更多快捷方式。

Do you really want a regular expression?

This uses * ("globbing") and {[...]} ("brace expansion").

$ ls *.{zip,rar}

See also this question for many, many more shortcuts.

没︽人懂的悲伤 2024-11-16 06:03:16

使用大括号扩展:

ls *.{zip,rar}

如果必须使用正则表达式,可以使用 find

find -regex ".*\.\(zip\|rar\)"

Use brace expansion:

ls *.{zip,rar}

If you must use a regex, you can use find:

find -regex ".*\.\(zip\|rar\)"
深居我梦 2024-11-16 06:03:16

在 bash 中,您可以打开特殊的 extglob 选项来使用正则表达式执行此操作:

shopt -s extglob
ls *.*(zip|rar)

这里的优点是它将列出一种或两种文件类型,即使其中一种文件类型不存在。

(与所有 shell glob 匹配一样,如果没有匹配,模式将直接传递给 ls;使用 shopt -s failureglob 禁用此行为)

In bash you can turn on the special extglob option to do this with a regex:

shopt -s extglob
ls *.*(zip|rar)

The advantage here is that it will list either or both file types, even if one is not present.

(As with all shell glob matching, the pattern will be passed directly to ls if there is no match; disable this behaviour with shopt -s failglob)

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