在bash中,列出两种类型文件的正则表达式是什么?
目录包含 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您真的想要正则表达式吗?
这使用
*
("globbing") 和{[...]}
("大括号扩展")。对于许多人来说,另请参阅这个问题 ,还有更多快捷方式。
Do you really want a regular expression?
This uses
*
("globbing") and{[...]}
("brace expansion").See also this question for many, many more shortcuts.
使用大括号扩展:
如果必须使用正则表达式,可以使用
find
:Use brace expansion:
If you must use a regex, you can use
find
:在 bash 中,您可以打开特殊的 extglob 选项来使用正则表达式执行此操作:
这里的优点是它将列出一种或两种文件类型,即使其中一种文件类型不存在。
(与所有 shell glob 匹配一样,如果没有匹配,模式将直接传递给 ls;使用
shopt -s failureglob
禁用此行为)In bash you can turn on the special extglob option to do this with a regex:
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
)