Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse,-p -le "while(<>){print}"
    BEGIN { $/ = "\n"; $\ = "\n"; }
    while (defined(($_ = <ARGV>))) {
    ...
    
    $ echo hi |perl -le "while($f=<>){print}"