awkの履歴

1列目だけ取得

$ awk '{print $1}' file


これと同じことする

$ cat file | tr -s ' ' ' ' | cut -d ' ' -f 1