Help for this page

Select Code to Download


  1. or download this
        perl -lane 'print $F[5]' file
  2. or download this
        perl -lane 'print $F[5] if @F > 5'        file
        perl -lane 'print $F[5] if defined $F[5]' file
    
  3. or download this
        perl -F, -lane 'print $F[5]' file
  4. or download this
        awk '{print $6}' file