perl – 我如何使用$File :: Find :: prune?

前端之家收集整理的这篇文章主要介绍了perl – 我如何使用$File :: Find :: prune?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在第一个目录中编辑cue文件,而不是在子目录中递归.

find(\&read_cue,$dir_source);
sub read_cue {
    /\.cue$/ or return;

    my $fd = $File::Find::dir;
    my $fn = $File::Find::name; 
    tie my @lines,'Tie::File',$fn
      or die "could not tie file: $!";

    foreach (@lines) {
        s/some substitution//;
    }

    untie @lines;
}

我尝试过变种

$File::Find::prune = 1;
return;

但没有成功.我应该在哪里放置和定义$File :: Find :: prune?

谢谢

解决方法

如果你不想递归,你可能想要使用 glob

for  (glob("*.cue")) {
   read_cue($_);
}

猜你在找的Perl相关文章