Help for this page

Select Code to Download


  1. or download this
    $ perl -lp000e1  input.txt >output.txt
    
  2. or download this
    $ perl -MO=Deparse -lp000e1
    
    ...
    continue {
        die "-p destination: $!\n" unless print $_;
    }
    
  3. or download this
    use warnings;
    use strict;
    ...
        chomp;
        print;
    }