我一直试图弄清楚如何让grep成为一个只出现N个字符的行.
[root@example DIR]# grep -E "6{,1}" test.txt 6543 6625 6668 6868 6666 1161
我想要的是grep打印出以下内容:
[root@example DIR]# grep -E "6{,1}" test.txt 6543 1161
我错过了什么?提前致谢!
更新:
哇救援!感谢大家分享您的知识!