本文介绍了如何在 Perl 单行中获取当前文件的文件名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以像下面这样在 Perl 单行中获取当前文件名(从文件列表中)?
Is it possible to get the current filename (from a list of files) in a Perl one-liner like this below?
perl -lane 'if ($_=~/my_value/) { print $_; }' *.txt
推荐答案
变量名是 $ARGV
.你可以在 perlvar 中找到它:$ARGV
.
The name of the variable is $ARGV
. You can find out about it in perlvar: $ARGV
.
这篇关于如何在 Perl 单行中获取当前文件的文件名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!