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