从列表中剪切列

use*_*864 5 command-line

如何从终端从以下列表中剪切第二列?

56    267  
57    235  
58    255  
59    283 
Run Code Online (Sandbox Code Playgroud)

小智 7

如果数据在名为 test.txt 的文件中,awk '{ print $1 }' test.txt则会执行此操作。