查找 /myMusic -输入 f | grep --regexp ,仅通过管道传输 mp3 文件的正则表达式?

发布于 2024-12-26 07:05:27 字数 168 浏览 0 评论 0原文

我正在努力编写正则表达式来查找我的所有 mp3 文件。我想输出最后四个字符为 .mp3 .Mp3 .mP3 或 .MP3 的所有文件

--regexp 后应遵循的正确模式是什么?

find /myMusic -type f | grep --regexp

I'm struggling to write a regular expression to find all my mp3 files. I want to pipe out all files with the last four characters being either .mp3 .Mp3 .mP3 or .MP3

What's the correct pattern that should follow --regexp?

find /myMusic -type f | grep --regexp

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

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

发布评论

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

评论(4

北笙凉宸 2025-01-02 07:05:27
find /myMusic -type f -iname '*.mp3'

-iname 匹配名称(此处为*.mp3),忽略大小写。

find /myMusic -type f -iname '*.mp3'

The -iname matches the name (*.mp3 here) ignoring case.

云仙小弟 2025-01-02 07:05:27

您不需要管道或 grepfind 可以通过 -regex 选项使用正则表达式。试试这个:

find /myMusic -type f -regex '.*\.[Mm][Pp]3' 

You don't need the pipe or the grep, find can use the regex with the -regex option. Try this:

find /myMusic -type f -regex '.*\.[Mm][Pp]3' 
匿名的好友 2025-01-02 07:05:27

使用:

find /myMusic -type f | grep -i "mp3$"

-i 使匹配不区分大小写,“$”指定行结束。

Use:

find /myMusic -type f | grep -i "mp3$"

-i makes the match case insensitive, and "$" specifies the end of the line.

傲影 2025-01-02 07:05:27

这种模式有效:

^.*\.[mM][pP]3$

这里是实际的:

http://regexr.com?2vn7d

This pattern works:

^.*\.[mM][pP]3$

Here it is in action:

http://regexr.com?2vn7d

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