$ echo 1 2 3 4 | awk '{print $1}' # 1
$ echo -e "a b\nx y"| awk '{if($1=="x")print $0}' # $0は行そのまま
? awkのtips
$ awk -F ',' '{print $1}' a.txt