Linux Grep命令使用实例
Linux Grep命令使用实例
grep用于查找文件中符合字符串的那行。那么你知道Linux Grep命令使用实例么?接下来是小编为大家收集的Linux Grep命令使用实例,欢迎大家阅读:
Linux Grep命令使用实例
Grep命令主要用于从文件中查找指定的字符串。
首先建一个demo_file:
复制代码代码如下:
例01:从单个文件中查找指定的字符串
复制代码代码如下:
例02:从多个文件中查找指定的字符串
复制代码代码如下:
例03:忽略大小写使用 grep -i
复制代码代码如下:
例04:在文件中匹配正则表达式
如果你能在实际使用正则表达式,能使效率大大提高。在下面的例子中,匹配了所有以lines开头,以empty结尾的行。
复制代码代码如下:
从Grep文档的来看,一个正则表达式必须遵循下面的匹配操作。
1.? The preceding item is optional and matched at most once.
2.* The preceding item will be matched zero or more times.
3.+ The preceding item will be matched one or more times.
4.{n} The preceding item is matched exactly n times.
5.{n,} The preceding item is matched n or more times.
6.{,m} The preceding item is matched at most m times.
7.{n,m} The preceding item is matched at least n times, but not more than m times.
看了“Linux Grep命令使用实例”还想看: