标签:显示 ash cat 命令 注释 匹配 pre conf 取出
多种匹配
grep -e "a|b"
精准匹配
grep -w "s"
前几行
grep -A
后几行
grep -B
前后几行
grep -C
显示过滤注释( # ; 开头) 和空行后的配置信息
grep -Ev "^$|^[#;]" server.conf
显示所有带 root 的行
$ grep root /etc/passwd root:x:0:0:root:/root:/bin/bash
$ cat /etc/passwd |grep root root:x:0:0:root:/root:/bin/bash
将没有出现 root 的行取出来
grep -v root /etc/passwd
标签:显示 ash cat 命令 注释 匹配 pre conf 取出
原文地址:https://www.cnblogs.com/big-ming/p/12697042.html