root@2ecb7fe6d0ad:~# cat a.txt
1
2 3
4 a b
a d zz w
11 22s sc 1 3
root@2ecb7fe6d0ad:~# awk '{print $$1}' a.txt
1
3
a d zz w
root@2ecb7fe6d0ad:~# awk '{print $$2}' a.txt
1
4 a b
a d zz w
这个是什么姿势,求教
root@2ecb7fe6d0ad:~# cat a.txt
1
2 3
4 a b
a d zz w
11 22s sc 1 3
root@2ecb7fe6d0ad:~# awk '{print $$1}' a.txt
1
3
a d zz w
root@2ecb7fe6d0ad:~# awk '{print $$2}' a.txt
1
4 a b
a d zz w
这个是什么姿势,求教
具体解释可以参考 Indirect field addressing