定位模式
我试图在 Linux 服务器上找到符合此配置文件的所有文件:
sfvhebviweuiber9.html
sfvhebviweuiber11.html
jdjhwn2jjsfy2q10.html
其中前 10-15
字符为 az
,后跟 [1-15]
,然后是 .html.
如何使用locate
(或任何其他方法)来查找符合此配置文件的所有文件?
差异基本上是前 10-15
字符,因为它们由随机字母字符组成。
I am trying to locate all files on a linux server that fit this profile:
sfvhebviweuiber9.html
sfvhebviweuiber11.html
jdjhwn2jjsfy2q10.html
Where the first 10-15
characters are a-z
, followed by [1-15]
, then .html
.
How can I use locate
(or any other method) to find all files that fit this profile?
The differences are basically the first 10-15
characters as they are made up of random alphabet characters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太明白你的描述中的“[1-15]”部分,但我认为这样就可以了。您可以优化正则表达式中的
.*
部分I don't quite get the "[1-15]" part of your description, but I think this would do. You can refine the
.*
part in the regex