awk处理过程: 依次对每一行进行处理的结果
2、awk ‘{print}‘ /etc/passwd == awk ‘{print $0}‘ /etc/passwd
加不加$0,都是打印整行内容
3、[root@k8s-master ~]# awk ‘{print "a"}‘ /etc/passwd >>ren
5、awk -F":" ‘(NR==1){print $1" "$3}‘ /etc/passwd 等价于 awk -F":" ‘(NR==1){print $1,$3}‘ /etc/passwd 每个字段中间会有空格
6、每个字符间没有空格,直接相连
[root@k8s-master ~]# awk -F":" ‘(NR==1){print $1 $3}‘ /etc/passwd
[root@k8s-master ~]# awk -F":" ‘(NR==1){print $1$3}‘ /etc/passwd
[root@k8s-master ~]# awk -F":" ‘(NR==1){print $1""$3}‘ /etc/passwd
原文:https://www.cnblogs.com/csren12/p/15249622.html