什么 Perl glob 表达式匹配所有看起来像 /home/test-N.txt 的文件?

发布于 2024-08-07 18:50:01 字数 160 浏览 8 评论 0原文

我是 Perl 语法的初学者,有一个基本的通配符问题。我正在寻找一个允许我检索以下所有文件的表达式。

/home/test-1.txt  
/home/test-2.txt  
/home/test-3.txt

我只对实际的通配符表达式感兴趣,而不是文件 I/O。

I am a beginner to Perl syntax and have a basic wildcard question. I am looking for an expression that would allow me to retrieve all of the following files.

/home/test-1.txt  
/home/test-2.txt  
/home/test-3.txt

I am just interested in the actual wildcard expression, not the file I/O.

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

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

发布评论

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

评论(1

回梦 2024-08-14 18:50:01

应该会列出您需要的文件。

glob("/home/test-*.txt") 做同样的事情。

这是简短的通配教程

</home/test-*.txt> should glob the files you need.

glob("/home/test-*.txt") does the same thing.

Here's a short globbing tutorial.

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