Linux fgrep命令

Linux fgrep命令:在每个文件或是标准输入中查找模式

Linux fgrep命令 功能描述

使用fgrep命令可以在每个文件或是标准输入中查找模式。模式是一组由断行符分隔的定长字符串。fgrep已不再使用了,请用grep -F代替。

Linux fgrep命令 语法

fgrep [选项] [模式] [文件]

命令中各选项的含义如下表所示。

Linux  fgrep命令 语法

Linux fgrep命令 示例

在/etc/passwd文件中查找具有root字符的行

[root@rhel ~]# fgrep root /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin

在/etc/passwd文件中查找不具有root字符的行

[root@rhel ~]# fgrep -v root /etc/passwd

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程