Too cumbersome:
awk '{print " "$4" "$5" "$6" "$7" "$8" "$9" "$10" "$11" "$12" "$13}' things
|
|||||||||||||
|
|
use cut
or if you insist on awk and $13 is the last field
else
|
|||||||||||||
|
|
Try this:
|
|||||
|
|
||||
|
|
Another way to avoid using the print statement:
In awk when a condition is true print is the default action. |
|||
|
|
cut -f3-? – Jefromi Apr 13 '10 at 0:38