我正在尝试开发一个 perl 脚本,该脚本在用户的所有目录中查找特定文件名,而无需用户指定文件的整个路径名。
例如,假设感兴趣的文件是focus.qseq
. 它位于/home/path/directory/
. 在命令行中,通常用户必须指定文件的路径名才能访问它,如下所示:/home/path/directory/focus.qseq
.
相反,我希望用户只需sample.qseq
在命令行中输入,然后 perl 脚本会自动将正确的文件分配给变量。如果文件是重复的但在不同的目录中,那么终端将显示这些文件的完整路径名,用户可以更好地指定他们想要的文件。
我阅读了有关File::Find模块的信息,但它并没有完全满足我的要求。
这是我实现上述代码的最佳尝试:
#!/usr/bin/perl
use strict; use warnings;
use File::Find;
my $file = shift;
# I want to search from the top down (you know, recursively) so first I look in the home directory
# I believe $ENV{HOME} is the same as $~/home/user
find(\&wanted, @$ENV{HOME});
open (FILEIN, $file) or die "couldn't open $file for read: $!\n";
我真的不明白wanted
子程序在这个模块中是如何工作的。如果有人知道实现我上面描述的代码的另一种方法,请随时提出建议。谢谢你
编辑:如果我想使用命令行选项怎么办。像这样:
#!/usr/bin/perl
use strict; use warnings;
use File::Find;
use Getopt::Long qw(GetOptions);
my $file = '';
GetOptions('filename|f=s' => \$file);
# I believe $ENV{HOME} is the same as $~/home/user
find(\&wanted, @$ENV{HOME});
open (FILEIN, $file) or die "couldn't open $file for read: $!\n";
这个实施如何?