查找 /myMusic -输入 f | grep --regexp ,仅通过管道传输 mp3 文件的正则表达式?
我正在努力编写正则表达式来查找我的所有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
-iname
匹配名称(此处为*.mp3
),忽略大小写。The
-iname
matches the name (*.mp3
here) ignoring case.您不需要管道或
grep
,find
可以通过-regex
选项使用正则表达式。试试这个:You don't need the pipe or the
grep
,find
can use the regex with the-regex
option. Try this:使用:
-i 使匹配不区分大小写,“$”指定行结束。
Use:
-i makes the match case insensitive, and "$" specifies the end of the line.
这种模式有效:
这里是实际的:
http://regexr.com?2vn7d
This pattern works:
Here it is in action:
http://regexr.com?2vn7d