1.awk获取每个以C和E开头的名字。
[root@VM-4-13-centos awk]# cat renyuan.txt me age sex jack 18 男 ben 28 男 Cici 38 女 wumen 48 男 chu 55 男 jj 42 男 eni 23 emo 31 女 wuwu 22 女 hihi 25 [root@VM-4-13-centos awk]# cat renyuan.txt | awk '{print $1}' |awk '/^C/;/^c/;/^E/;/^e/' Cici chu eni emoView Code
标签:练习题,centos,eni,文本处理,awk,-----,txt,renyuan From: https://www.cnblogs.com/joyware/p/16924244.html