Help for this page

Select Code to Download


  1. or download this
    perl -MO=Deparse -lane "print $F[2]"
    
  2. or download this
    BEGIN { $/ = "\n"; $\ = "\n"; }
    LINE: while (defined($_ = readline ARGV)) {
    ...
        our @F = split(' ', $_, 0);
        print $F[2];
    }
    
  3. or download this
        our @F = split(' ', $_, 0);