标签:linux 文件 span pre 字符串 code gre 使用 不包含
最近发现了grep一个超级好用的指令
1. 在当前目录及其子目录中查找所有包含字符串abc的文件及位置
grep -rn "abc" *
2. 查找不包含"abc"的信息 用 -v
grep -v "abc"
3.查找不包含"abc"和"def"的信息
grep -v "abc"|grep -v "def"
标签:linux 文件 span pre 字符串 code gre 使用 不包含
原文地址:http://www.cnblogs.com/dplearning/p/6282241.html