美文网首页Perl
Perl 脚本记录3

Perl 脚本记录3

作者: 夏秋之萌 | 来源:发表于2017-12-20 15:32 被阅读0次

    rm_multi_line.pl

    #!/usr/bin/perl
    
    open my $oldfile,"<",$ARGV[0];
    open(OUT,">./new1");
    
    while (<$oldfile>) {
            unless( $_ =~ /a|b|c/ ) {
                    print OUT "$_";
            }
    }

    相关文章

      网友评论

        本文标题:Perl 脚本记录3

        本文链接:https://www.haomeiwen.com/subject/nbvgwxtx.html