一.基本用法 文本内容准备 2 this is a test 3 Are you like awk This's a test 10 There are orange,apple,mongo 用法一:行匹配语句awk ''只能使用单引号 实例:每行按空格或TAB分割,输出文本中的1.4项 [root@master mnt]# cat log.txt |awk '{print $1,$4}' 2 a 3 like This's 10 orange,apple,mongo格式化输出 [root@ma…