多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
#### grep ``` 从文件中搜索内容 ``` 搜索test.txt中是否存在test字符串 ``` root@ecs-a672-0002:/home/test# grep test test.txt test ``` 行号 ``` root@ecs-a672-0002:/home/test# grep -n test test.txt 7:test ``` ``` -v 搜索不存在的行 ``` 有多少行匹配 ``` root@ecs-a672-0002:/home/test# grep -c test test.txt 1 root@ecs-a672-0002:/home/test# grep -vc test test.txt 11 ```