什么 Perl glob 表达式匹配所有看起来像 /home/test-N.txt 的文件?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该会列出您需要的文件。
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.