linux常用命令-grep,egrep,regexp

grep: 根据模式搜索文本,并将符合模式的文本行显示出来。
Pattern: 文本字符和正则表达式的元字符组合而成匹配条件

grep [options] PATTERN [FILE...]

-i(忽略大小写)

[[email protected] ~]# grep root /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
[[email protected] ~]#

--color(加颜色)

-v: 显示没有被模式匹配到的行

[[email protected] ~]# grep -v root /etc/passwd
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin

-o:只显示被模式匹配到的字符串

[[email protected] ~]# grep -o root /etc/passwd
root
root
root
root
[[email protected] ~]#



*: 任意长度的任意字符
?: 任意单个字符
[]:
[^]:

正则表达式:REGular EXPression, REGEXP
元字符:
.: 匹配任意单个字符
[]: 匹配指定范围内的任意单个字符
[^]:匹配指定范围外的任意单个字符
 字符集合:[:digit:], [:lower:], [:upper:], [:punct:], [:space:], [:alpha:], [:alnum:]

[[email protected] ~]# grep ‘[[:digit:]]$‘ /etc/inittab
#   5 - X11
[[email protected] ~]#

匹配次数(贪婪模式):
*:匹配其前面的字符任意次 
 a, b, ab, aab, acb, adb, amnb
 a*b, a?b
 a.*b

[[email protected] ~]# grep ‘a*b‘ test.txt
b
ab
aab
acb
adb
acdafb
asdflkbSDFb
[[email protected] ~]#

.*: 任意长度的任意字符

[[email protected] ~]# grep ‘a.*b‘ test.txt
ab
aab
acb
adb
acdafb
asdflkbSDFb
[[email protected] ~]#

\?: 匹配其前面的字符1次或0次

[[email protected] ~]# grep ‘a\?b‘ test.txt
b
ab
aab
acb
adb
acdafb
asdflkbSDFb
[[email protected] ~]#

\{m,n\}:匹配其前面的字符至少m次,至多n次
 \{1,\}:至少一次
 \{0,3\}:0-3次

[[email protected] ~]# grep ‘a\{1,3\}b‘ test.txt
ab
aab
[[email protected] ~]#

[[email protected] ~]# grep ‘a.\{1,3\}b‘ test.txt
aab
acb
adb
acdafb
[[email protected] ~]#

位置锚定:
^: 锚定行首,此字符后面的任意内容必须出现在行首

[[email protected] ~]# grep ‘^r..t‘ /etc/passwd
root:x:0:0:root:/root:/bin/bash
[[email protected] ~]#

$: 锚定行尾,此字符前面的任意内容必须出现在行尾

[[email protected] ~]# grep ‘login$‘ /etc/passwd
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
uucp:x:10:14:uucp:/var/spool/uucp:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
gopher:x:13:30:gopher:/var/gopher:/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
nobody:x:99:99:Nobody:/:/sbin/nologin

^$: 空白行

[[email protected] ~]# grep ‘^$‘ .bashrc

[[email protected] ~]# grep ‘^$‘ .bashrc | wc -l
4
[[email protected] ~]#

\<或\b: 锚定词首,其后面的任意字符必须作为单词首部出现

[[email protected] ~]# grep ‘root\>‘ test2.txt
this is root
the user is mroot
chroot is a command
mroot is not a word
[[email protected] ~]#

[[email protected] ~]# grep ‘root\b‘ test2.txt
this is root
the user is mroot
chroot is a command
mroot is not a word
[[email protected] ~]#

\>或\b: 锚定词尾,其前面的任意字符必须作为单词的尾部出现

[[email protected] ~]# grep ‘\<root‘ test2.txt
this is root
rooter is a dog
[[email protected] ~]#

[[email protected] ~]# grep ‘\broot‘ test2.txt
this is root
rooter is a dog
[[email protected] ~]#

\<root>\:锚定单词

[[email protected] ~]# grep ‘\<root\>‘ test2.txt
this is root
[[email protected] ~]#

分组:
\(\)
 \(ab\)*
 后向引用
 \1: 引用第一个左括号以及与之对应的右括号所包括的所有内容
 \2:
 \3:
 
He love his lover.
She like her liker.
He like his lover.

l..e

[[email protected] ~]# grep ‘\(l..e\).*\1‘ test3.txt
He love his lover.
She like her liker.
[[email protected] ~]#

练习:
1、显示/proc/meminfo文件中以不区分大小的s开头的行;
grep -i ‘^s‘ /proc/meminfo
grep ‘^[sS]‘ /proc/meminfo
2、显示/etc/passwd中以nologin结尾的行;
grep ‘nologin$‘ /etc/passwd

取出默认shell为/sbin/nologin的用户列表
grep "nologin$‘ /etc/passwd | cut -d: -f1

取出默认shell为bash,且其用户ID号最小的用户的用户名
grep ‘bash$‘ /etc/passwd | sort -n -t: -k3 | head -1 | cut -d: -f1

3、显示/etc/inittab中以#开头,且后面跟一个或多个空白字符,而后又跟了任意非空白字符的行;
grep "^#[[:space:]]\{1,\}[^[:space:]]" /etc/inittab

4、显示/etc/inittab中包含了:一个数字:(即两个冒号中间一个数字)的行;
grep ‘:[0-9]:‘ /etc/inittab

5、显示/boot/grub/grub.conf文件中以一个或多个空白字符开头的行;
grep ‘^[[:space:]]\{1,\}‘ /boot/grub/grub.conf

6、显示/etc/inittab文件中以一个数字开头并以一个与开头数字相同的数字结尾的行;
grep ‘^\([0-9]\).*\1$‘ /etc/inittab

练习:
1、找出某文件中的,1位数,或2位数;
grep ‘[0-9]\{1,2\}‘ /proc/cpuinfo
grep --color ‘\<[0-9]\{1,2\}\>‘ /proc/cpuinfo

2、找出ifconfig命令结果中的1-255之间的整数;

3、查找当前系统上名字为student(必须出现在行首)的用户的帐号的相关信息, 文件为/etc/passwd
grep ‘^student\>‘ /etc/passwd | cut -d: -f3
id -u student



REGEXP:REGular EXPression
Pattern:

正则表达式:
 Basic REGEXP:基本
 Extended REGEXP:扩展

基本正则表达式:
.:
[]:
[^]:

次数匹配:
*:
\?: 0或1次
\{m,n\}:至少m次,至多n次;

.*:

锚定:
^:
$:
\<, \b:
\>, \b:

\(\)
\1, \2, \3, ...

grep:使用基本正则表达式定义的模式来过滤文本的命令;
 -i
 -v
 -o
 --color
 -E: 使用扩展正则表达式
 -A #:

[[email protected] ~]# grep -A 2 ‘^core id‘ /proc/cpuinfo
core id  : 0
cpu cores : 1
apicid  : 0
[[email protected] ~]#

-B #:

[[email protected] ~]# grep -B 2 ‘^core id‘ /proc/cpuinfo
physical id : 0
siblings : 1
core id  : 0

-C #:
 [[email protected] ~]# grep -C 2 ‘^core id‘ /proc/cpuinfo
physical id : 0
siblings : 1
core id  : 0
cpu cores : 1
apicid  : 0
[[email protected] ~]#

扩展正则表达式:

字符匹配:
.
[]
[^]

次数匹配:
*:
?:
+: 匹配其前面的字符至少1次
{m,n}

位置锚定:
^
$
\<
\>

分组:
():分组
\1, \2, \3, ...

或者
|: or
C|cat: Cat或cat, C或cat

[[email protected] ~]# grep -E ‘C|cat‘ test6.text
Cat
cat
C
China
[[email protected] ~]#

[[email protected] ~]# grep -E ‘(C|c)at‘ test6.text
Cat
cat
[[email protected] ~]#

[[email protected] ~]# grep -E ‘^[[:space:]]+‘ /boot/grub/grub.conf
 root (hd0,0)
 kernel /vmlinuz-2.6.32-504.el6.x86_64 ro root=UUID=57d85756-7680-4c7c-9125-6ad67dae2c45 rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 crashkernel=auto  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM quiet
 initrd /initramfs-2.6.32-504.el6.x86_64.img
[[email protected] ~]#

grep -E = egrep

4、显示所有以数字结尾且文件名中不包含空白的文件;
ls *[^[:space:]]*[0-9]   ?????????

找出/boot/grub/grub.conf文件中1-255之间的数字;
\<([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>

\.

ifconfig | egrep ‘\<([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>\.\<([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>\.\<([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>\.\<([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>‘

ifconfig | egrep --color ‘(\<([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>\.){3}\<([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>‘

IPv4:
5类:A B C D E
A:1-127
B:128-191
C:192-223

\<([1-9]|[1-9][0-9]|1[0-9]{2}|2[01][0-9]|22[0-3])\>(\.\<([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])\>){2}\.\<([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])\>

http://mageedu.blog.51cto.com/

grep, egrep
fgrep: 不支持正则表达式

时间: 2024-10-24 17:29:04

linux常用命令-grep,egrep,regexp的相关文章

Linux常用命令——grep

grep 文本过滤工具 语法格式:grep [options][pattern][file] grep [参数] [匹配模式] [查找的文件]注意:1.grep 是 Linux 系统中最重要的命令之一,其功能是从文本文件或管道数据流中筛选匹配的行及数据.2.grep 命令里的匹配模式或模式匹配,都是你要好找的东西,可以是普通的文字符号也可以是正则表达式.参数选项: 参数 说明 -c 计算找到'搜索字符串'的行数 -o 指数出匹配的内容 -i 不区分大小写 -n 显示匹配内容的行号 -r 当指定要

Linux常用命令—grep及正则表达式

正则表达式:REGular EXPression,REGEXP 元字符: .:匹配任意单个字符 touch一个文件 对test.txt文件使用grep,单独查询'a' 使用'.' 以'a'结尾,前面任意一个字符,以'a'开头,后面任意一个字符. []:匹配指定范围内的任意单个字符 [^]:匹配指定范围外的任意单个字符 字符集合: 纯数字 [[:digit:]]或[0-9] 小写字母 [[:lower:]]或[a-z] 大写字母 [[:upper:]]或[A-Z] 大小写字母 [[:alpha:]

Linux 命令grep, egrep,正则表达式大全

Linux grep 命令     Linux系统中grep,egrep命令是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹 配的行打印出来.grep全称是Global Regular Expression Print,表示全局正则表达式版本,它的使用权限是所有用户. 1.grep : 最早的文本匹配程序,使用POSIX定义的基本正则表达式(BRE)来匹配文本. 2.egrep : 扩展式grep,其使用扩展式正规表达式(ERE)来匹配文本. 3.fgrep : 快速grep,这个版

Linux中 文本处理命令 grep egrep fgrep的使

个人见解:我认为Linux中的文本处理命令 grep egrep fgrep命令 其实只要牢牢掌握grep就可以了 因为其他两个几乎是一样的 不一样的地方也很好区分 grep 基本使用方法: 使用方法 grep [选项] '表达式' #学习的时候没好好听 不知道自己写错没 为了这篇博文的通常 我还是先不看之前学习的视频了这里的常用选项有 -o -v -i -n -A -B -C -数字 -E [email protected]:~# grep -o '^root:' /etc/passwd #-

(转)linux常用命令

原地址:http://www.cnblogs.com/svage/p/3700122.html 1.删除目录及子目录下的 .svn目录 find . -type d -name ".svn" | xargs rm -rf 2./tmp 目录的权限 drwxrwxrwt rwt的意思是:对目录有执行权限,但不能删除,即sticky bit rwx : 可读可写可执行 4+2+1 3.改变群组.用户.权限 chgrp   群组名   改变的目录 groupadd -g gid gname

linux常用命令技巧

原文地址 这篇文章来源于Quroa的一个问答<What are some time-saving tips that every Linux user should know?>-- Linux用户有哪些应该知道的提高效率的技巧.我觉得挺好的,总结得比较好,把其转过来,并加了一些自己的理解. 首先,我想告诉大家,在Unix/Linux下,最有效率技巧的不是操作图形界面,而是命令行操作,因为命令行意味着自动化.如果你看过<你可能不知道的Shell>以及<28个Unix/Linu

Linux常用命令及bash特性(1)

Linux简单使用(1) Linux常用命令介绍 linux命令是对Linux系统进行管理的命令.对于Linux系统来说,无论是中央处理器.内存.磁盘驱动器.键盘.鼠标,还是用户等都是文件,Linux系统管理的命令是它正常运行的核心. linux命令在系统中有两种类型:内置Shell命令和Linux命令.可以使用help.man和info命令获得帮助. * help提供内部命令的帮助:man和info提供外部命令的帮助. Linux常用命令 pwd命令:以绝对路径的方式显示当前的工作目录: [[

linux 常用命令及技巧

linux 常用命令及技巧:linux 常用命令总结: 一. 通用命令: 1. date :print or set the system date and time 2. stty -a: 可以查看或者打印控制字符(Ctrl-C, Ctrl-D, Ctrl-Z等) 3. passwd: print or set the system date and time (用passwd -h查看) 4. logout, login: 登录shell的登录和注销命令 5. pwd: print or s

shell命令--grep/egrep

shell命令--grep/egrep 0.grep/egrep命令的专属图床 点此快速打开文章[图床_shell命令grep/egrep] 1.grep/egrep命令的功能说明 ? grep命令是Linux系统中最重要的命令之一,其功能是从文本文件或管道数据流中筛选匹配的行及数据,如果配合正则表达式技术一起使用,则功能更加强大.egrep 是 grep 的扩展正则. 2.grep/egrep命令的语法格式 SYNOPSIS grep [OPTIONS] PATTERN [FILE...] g