Help for this page

Select Code to Download


  1. or download this
    cat /tmp/1.out|perl -lane 'print $F[1]..$F[-1]'
    
  2. or download this
    perl -lane 'print join q{ }, @F[1..$#F]' /tmp/1.out
    
  3. or download this
    perl -lape '$_=join q{ }, @F[1..$#F]' /tmp/1.out
    
  4. or download this
    perl -lpe 's/\s*\S+\s*//' /tmp/1.out