定位模式

发布于 2024-11-07 21:00:42 字数 371 浏览 0 评论 0原文

我试图在 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 技术交流群。

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

发布评论

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

评论(1

泼猴你往哪里跑 2024-11-14 21:00:42

我不太明白你的描述中的“[1-15]”部分,但我认为这样就可以了。您可以优化正则表达式中的 .* 部分

locate -r '[a-z]\{10,15\}.*html'

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

locate -r '[a-z]\{10,15\}.*html'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文