awk '/test/' test 打印包含test的行
awk '/test/ {print $1}' test 打印包含test的行的第一列
awk '/test/ {print $1; print $2}' test 每个打印出来的字段独占一行