在 Windows 中打开文件用查找功能可以查找我们想要的字符,前提是要打开文件。Linux 有一个指令不用打开文件就可以查询字符,而且支持正则表达式—— grep 指令。不仅如此,grep 还支持在多个文件中查找想要的字符。
查找test-
开头的文件中包含字母 a 的字符:
zhengrenfu@zhengrenfu:~/文档$ grep a test-*.txt test-1.txt:Sunday test-3.txt:acronym test-4.txt:enziandom
查找test-
开头的文件中以 m 字母结尾的内容:
zhengrenfu@zhengrenfu:~/文档$ grep "m$" test-*.txt test-3.txt:acronym test-4.txt:enziandom
统计以 m 字母结尾的次数:
zhengrenfu@zhengrenfu:~/文档$ grep "m$" test-*.txt | wc -w 2
还有一个egrep
指令,作用跟grep
是一样的,只不过egrep
是它的扩展,支持更多的正则表达式语法。