NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
#### 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 ```