How can I delete some columns from a tab separated fields file with awk?
awk
c1 c2 c3 ..... c60
For example, delete columns be
This is what the cut command is for:
cut
cut -f1,2,30- inputfile
The default is tab. You can change that with the -d switch.
-d