Help for this page

Select Code to Download


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