Help for this page

Select Code to Download


  1. or download this
    perl -nle'
       push @w, $_;
       END { print join ";", @w }
    '
    
  2. or download this
    perl -ne'
       BEGIN { $\ = "\n"; }
       chomp; push @w, $_;
       END { print join ";", @w }
    '