001、
[root@PC1 test2]# ls a.txt [root@PC1 test2]# cat a.txt ## 测试数据 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 [root@PC1 test2]# grep "^\S+" a.txt [root@PC1 test2]# grep -P "^\S+" a.txt ## -P参数表示使用perl语言正则表达式 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
。
02、
[root@PC1 test2]# cat a.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 [root@PC1 test2]# grep "^\S\+" a.txt ## +号前增加转义字符,实现同样的效果 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
。
标签:02,test2,grep,PC1,参数,Linux,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/18263474