- or download this
one
two
three
- or download this
filterTwoThree.pl | oneTwoThree.pl
- or download this
two
three
- or download this
#!c:/perl/bin/perl
#oneTwoThree.pl
...
print "one\n";
print "two\n";
print "three\n";
- or download this
#filterTwoAndThree.pl
use warnings;
...
if (/two|three/) {
print $_;
}
- or download this
perl oneTwoThree.pl | perl -n filterTwoAndThree.pl