How can I delete some columns from a tab separated fields file with awk?
awk
c1 c2 c3 ..... c60
For example, delete columns be
Perl 'splice' solution which does not add leading or trailing whitespace:
perl -lane 'splice @F,3,27; print join " ",@F' file
Produces output:
c1 c2 c30 c31