001、
[root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 測試資料 01 02 03 04 05 中國農副業 06 07 河南 08 09 10 [root@PC1 test]# cat a.txt | grep -P '[\x{4e00}-\x{9fff}]' 中國農副業 07 河南 [root@PC1 test]# cat a.txt | grep -P '[\x{4e00}-\x{9fff}]+' ## 匹配中文字元 中國農副業 07 河南 [root@PC1 test]# cat a.txt | grep -v -P '[\x{4e00}-\x{9fff}]+' ## 反取中文字元 01 02 03 04 05 06 08 09 10
。