Help for this page

Select Code to Download


  1. or download this
     perl -lane '$,="\t"; print @F[0..4],  "\t\t\t",  @F[25..30]' file.txt
    
  2. or download this
    print join "\t", @F[0..4], ('')x3, @F[25..30];