grep: Global search REgularexpression and Print out the line(基础正则表达式)
作用:文本搜索工具,根据用户指定的“模式”对目标文本逐行进行匹配检查;打印匹配到的行
模式:由正则表达式字符及文本字符所编写的过滤条件
•
grep [OPTIONS] PATTERN [FILE...]
grep root /etc/passwd
grep "$USER" /etc/passwd
grep '$USER' /etc/passwd
grep whoami
/etc/passwd
egrep:扩展正则表达式
fgrep:不支持正则表达式