看到你用 perl 标记了你的问题,这里有一些例子:
在 perl 中硬编码:
#!/usr/bin/perl
use warnings;
use strict;
open INFILE,"<somefilename";
while (<INFILE>)
{
my @cols = split(/\s+/,$_);
if ($cols[0] eq '10993') { print $cols[-1] . "\n"; }
}
再次使用 perl,但取而代之的是从 STDIN 获取它,因此您可以将输出通过管道传输到它:
#!/usr/bin/perl
use warnings;
use strict;
while (<>)
{
my @cols = split(/\s+/,$_);
if ($cols[0] eq '10993') { print $cols[-1] . "\n"; }
}
perl 中的另一个示例,将文件名作为第一个参数,将所需的第一个字段作为第二个参数:
#!/usr/bin/perl
use warnings;
use strict;
unless ($ARGV[0]) { die "No filename specified\n" }
unless ($ARGV[1]) { die "No required field specified\n" }
unless (-e $ARGV[0]) { die "Can't find file $ARGV{0]\n" }
open INFILE,"<ARGV{0]";
while (<INFILE>)
{
my @cols = split(/\s+/,$_);
if ($cols[0] eq $ARGV[1]) { print $cols[-1] . "\n"; }
}
但是,只使用 awk 可能更容易:
awk '{if ($1 == 10993) {print $NF}}' someFileName