Help for this page

Select Code to Download


  1. or download this
    LINE: while (<>) { ... }
    
  2. or download this
    perl -ne'push @a, $_; END { print @a; }'
    
  3. or download this
    perl -e'@a = <>; print @a;'