快速查找 grep 常用命令
grep 匹配正则表达式
功能 | 实例 |
---|---|
关键词 | grep root /etc/passwd |
带空格 | grep 'non-root user' /etc/passwd |
不区分大小写 | grep -i default /etc/passwd |
完整匹配 | grep -w default /etc/passwd |
打印不匹配 | grep -v root /etc/passwd |
不输出,返回 0 1 | grep -q root /etc/passwd |
行首 | grep ^root /etc/passwd |
行尾 | grep /bin/sh$ /etc/passwd |
多个或 | grep -E 'root|guest' /etc/passwd |
查找文件内容 | find <path> -type f -print | xargs grep <word> |