This topic created in 2506 days ago, the information mentioned may be changed or developed.
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