shell命令grep -v 不匹配


grep 正则表达式;查找字符串;命令;

-v, --invert-match(反转匹配,也就是不匹配)   Invert the sense of matching, to select non-matching lines.颠倒匹配的意识,选择不匹配的行。
-E,--extended-regexp(扩展的正则表达式)

ps -fe| grep -vE '(grep|/bin/bash)'

ls -Ft | grep -vE '(vip/$|download/$)' | tail -200

-v:显示不包含匹配文本的所有行。反向查找。
-E 使用扩展正则表达式

阅读量: 702
发布于:
修改于: