Help for this page

Select Code to Download


  1. or download this
        perl -lpe '}{*_=*.}{' file
  2. or download this
        $ perl -MO=Deparse  -lpe '' file
    
        LINE: while (defined($_ = <ARGV>)) {
    ...
            print $_;
        }
    
  3. or download this
        $ perl -MO=Deparse  -lpe '}{*_=*.}{' file
    
        LINE: while (defined($_ = <ARGV>)) {
    ...
        continue {
            die "-p destination: $!\n" unless print $_;
        }