这将打印列9,例如:
... | awk '{print $9}'
如何告诉awk打印包括第9列之后的所有列,而不是第9列?
awk '{ s = ""; for (i = 9; i <= NF; i++) s = s $i " "; print s }'