mirror of
https://tildegit.org/ben/dotfiles.git
synced 2025-04-03 19:43:23 +00:00
19 lines
250 B
Perl
Executable File
19 lines
250 B
Perl
Executable File
#!/usr/bin/env perl
|
|
# https://blog.plover.com/prog/runN.html
|
|
|
|
my $field = shift or usage();
|
|
$field -= 1 if $field > 0;
|
|
$|=1;
|
|
|
|
while (<>) {
|
|
chomp;
|
|
my @f = split;
|
|
print $f[$field], "\n";
|
|
}
|
|
|
|
sub usage {
|
|
print STDERR "$0 fieldnumber\n";
|
|
exit 1;
|
|
}
|
|
|