最佳答案
在 shell 上,当我需要某个特定列时,我通过管道来 awk。
这将打印第9列,例如:
... | awk '{print $9}'
我如何告诉 awk 打印所有的列 包括第9栏及其后,而不只是列9?