查看“每天一命令之grep”的源代码
←
每天一命令之grep
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
=常用参数= <pre> #多个and ps -ef | grep -E 'tomcat1 |tomcat2 |grep -v grep ' grep -rn sth somefiles #比dat 好 ##并 fstab 文件中 有 /data 和 UUID 关键词 grep /data /etc/fstab | grep UUID grep 同时满足多个关键字和满足任意关键字 ① grep -E "word1|word2|word3" file.txt 满足任意条件(word1、word2和word3之一)将匹配。 ② grep word1 file.txt | grep word2 |grep word3 必须同时满足三个条件(word1、word2和word3)才匹配。 </pre> [http://blog.51cto.com/haowen/2068456 find & grep 总结] == 精准 非贪婪匹配== <pre> -w, --word-regexp 强制 PATTERN 仅完全匹配字词 Select only those lines containing matches that form whole words. The test is that the matching substring must either be at the beginning of the line, or preceded by a non-word constituent character. Similarly, it must be either at the end of the line or followed by a non-word constituent character. Word-constituent characters are letters, digits, and the underscore. This option has no effect if -x is also specified. </pre> [https://blog.51cto.com/future/88653 grep 参数使用和实例] [[category:shell]]
返回至
每天一命令之grep
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息