001、
[root@PC1 test02]# ls a.txt [root@PC1 test02]# cat a.txt ## 测试数据 3 21971 22579 21 9 46 3 21976 22553 38 118 45 3 21972 22609 44 9 47 3 21987 22531 44 109 98 3 21983 22578 46 110 77 3 21988 22578 46 110 77 [root@PC1 test02]# cat -A a.txt 3^I21971^I22579^I21^I9^I46$ 3^I21976^I22553^I38^I118^I45$ 3^I21972^I22609^I44^I9^I47$ 3^I21987^I22531^I44^I109^I98$ 3^I21983^I22578^I46^I110^I77$ 3^I21988 22578 46 110 77$ [root@PC1 test02]# grep $'\t4' a.txt ## 精准匹配制表符,不匹配空格 3 21971 22579 21 9 46 3 21976 22553 38 118 45 3 21972 22609 44 9 47 3 21987 22531 44 109 98 3 21983 22578 46 110 77
。
标签:制表符,grep,46,22578,44,110,linux,test02,txt From: https://www.cnblogs.com/liujiaxin2018/p/17578447.html