- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章linux下的通配符与正则表达式由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
通配符 。
* 任意字符,可重复多次 ? 任意字符,重复一次 [] 代表一个字符 。
举例: [a,b,c] 表示abc中任意一个 。
通配符的作用是用来匹配文件名的 。
正则表达式 。
正则表达式是在文件中匹配符合条件的字符串的 。
ls find cp是不支持正则表达式的 。
但是grep awk sed支持正则表达式 。
[root@hadoop-bigdata01 test]# touch aa [root@hadoop-bigdata01 test]# touch aab aabb [root@hadoop-bigdata01 test]# ll total 0 -rw-r--r-- 1 root root 0 May 16 19:47 aa -rw-r--r-- 1 root root 0 May 16 19:47 aab -rw-r--r-- 1 root root 0 May 16 19:47 aabb [root@hadoop-bigdata01 test]# ls aa aa [root@hadoop-bigdata01 test]# ls aa? aab [root@hadoop-bigdata01 test]# ls aa* aa aab aabb 。
正则表达式特殊字符 。
正则表达式匹配范围 。
正则表达式标准字符 。
使用正则表达式 。
1
|
grep
"1"
/etc/passwd
|
包含关键字1的行,grep只要包含就行,不想通配符,要完全一致 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[root@hadoop-bigdata01
test
]
# grep "1" /etc/passwd
bin:x:1:1:bin:
/bin
:
/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
dbus:x:81:81:System message bus:/:
/sbin/nologin
usbmuxd:x:113:113:usbmuxd user:/:
/sbin/nologin
avahi-autoipd:x:170:170:Avahi IPv4LL Stack:
/var/lib/avahi-autoipd
:
/sbin/nologin
abrt:x:173:173::
/etc/abrt
:
/sbin/nologin
wang:x:501:501::
/home/wang
:
/bin/bash
grep
'root'
/etc/passwd
cat
/etc/passwd
|
grep
'root'
|
都是同样的道理,但是管道符更吃资源 。
所以 。
1.匹配含有数字的行 。
1
|
grep
'[0-9]'
/etc/passwd
|
2.匹配连续含有三个数字的行 。
1
|
grep
'[0-9][0-9][0-9]'
/etc/passwd
或者
grep
':[0-9][0-9][0-9]:'
/etc/passwd
|
1
2
3
4
5
6
7
8
9
10
11
|
[root@hadoop-bigdata01
test
]
# grep '[0-9][0-9][0-9]' /etc/passwd
games:x:12:100:games:
/usr/games
:
/sbin/nologin
usbmuxd:x:113:113:usbmuxd user:/:
/sbin/nologin
rtkit:x:499:497:RealtimeKit:
/proc
:
/sbin/nologin
avahi-autoipd:x:170:170:Avahi IPv4LL Stack:
/var/lib/avahi-autoipd
:
/sbin/nologin
abrt:x:173:173::
/etc/abrt
:
/sbin/nologin
nfsnobody:x:65534:65534:Anonymous NFS User:
/var/lib/nfs
:
/sbin/nologin
saslauth:x:498:76:
"Saslauthd user"
:
/var/empty/saslauth
:
/sbin/nologin
pulse:x:497:496:PulseAudio System Daemon:
/var/run/pulse
:
/sbin/nologin
liucheng:x:500:500::
/home/liucheng
:
/bin/bash
wang:x:501:501::
/home/wang
:
/bin/bas
|
3.匹配以r开头 n结尾的行 。
1
2
3
4
5
6
|
grep
'^r.*n$'
/etc/passwd
.*代表所有
[root@hadoop-bigdata01
test
]
# grep '^r.*n$' /etc/passwd
rpc:x:32:32:Rpcbind Daemon:
/var/cache/rpcbind
:
/sbin/nologin
rtkit:x:499:497:RealtimeKit:
/proc
:
/sbin/nologin
rpcuser:x:29:29:RPC Service User:
/var/lib/nfs
:
/sbin/nologin
|
4.过滤ifconfig ,截取ip 。
grep -v 代表反向截取,意思就是去除带有某关键字的行 sed有替换的意思 。
1
2
3
4
5
6
7
8
9
10
|
[root@hadoop-bigdata01
test
]
# ifconfig | grep 'inet addr:'
inet addr:192.168.126.191 Bcast:192.168.126.255 Mask:255.255.255.0
inet addr:127.0.0.1 Mask:255.0.0.0
[root@hadoop-bigdata01
test
]
#
[root@hadoop-bigdata01
test
]
# ifconfig | grep 'inet addr:' | grep -v '127.0.0.1'
inet addr:192.168.126.191 Bcast:192.168.126.255 Mask:255.255.255.0
[root@hadoop-bigdata01
test
]
# ifconfig | grep 'inet addr:' | grep -v '127.0.0.1' | sed 's/inet addr://g'
192.168.126.191 Bcast:192.168.126.255 Mask:255.255.255.0
[root@hadoop-bigdata01
test
]
# ifconfig | grep 'inet addr:' | grep -v '127.0.0.1' | sed 's/inet addr://g' | sed 's/Bcast.*//g'
192.168.126.191
|
误区 。
这里有个误区,想了好久,是正则表达式和通配符的区别 。
我们知道通配符的*指的是任意字符,可重复多次 正则表达式的*指的是匹配前一个字符>=0次 。
这两个是完全不同的,那如何知道我用的*是通配符还是正则表达式 。
起初我陷入一个误区,看下面这串命令 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[root@hadoop-bigdata01
test
]
# touch ac aac abc abbc
[root@hadoop-bigdata01
test
]
# ll
total 0
-rw-r--r-- 1 root root 0 May 16 19:55 aac
-rw-r--r-- 1 root root 0 May 16 19:55 abbc
-rw-r--r-- 1 root root 0 May 16 19:55 abc
-rw-r--r-- 1 root root 0 May 16 19:55 ac
[root@hadoop-bigdata01
test
]
# ls | grep 'a*c'
aac
abbc
abc
ac
[root@hadoop-bigdata01
test
]
# ls | grep 'a.*c'
aac
abbc
abc
ac
[root@hadoop-bigdata01
test
]
# ls | grep '^a.*c'
aac
abbc
abc
ac
[root@hadoop-bigdata01
test
]
# ls | grep '^a*c'
aac
ac
|
为什么grep 'a*c' 和 grep '^a*c$' 的结果会不一样,我以为一个是通配符,一个是正则,因为a*c显示的四个结果,正好 。
不就是匹配任意多个字符吗?
其实不然 。
通配符的作用是用来匹配文件名的 。
正则表达式是在文件中匹配符合条件的字符串的 。
交给管道符之后使用grep已经不是匹配文件名了,这是对文件的操作,所以说,他完全就是正则表达式 。
grep 'a*c' 表示的是匹配a>=0个所以只要含有c就是可以的 。
而grep '^a*c$'也是正则,表示的是以a开头,且第二个字符匹配a零次或者多次,接下来是c字母的 。
所以只有aac 和ac 符合条件 。
所以看这个例子 。
1
2
3
4
5
6
7
8
9
|
[root@hadoop-bigdata01
test
]
# ls
a aac abb abbc abc ac b bb c cb
[root@hadoop-bigdata01
test
]
# ls | grep 'a*b'
abb
abbc
abc
b
bb
cb
|
这里grep 'a*b' 指的可不是含有a和b 而是a重复0次或者多次然后含有b 。
以上所述是小编给大家介绍的linux下的通配符与正则表达式,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我网站的支持! 。
最后此篇关于linux下的通配符与正则表达式的文章就讲到这里了,如果你想了解更多关于linux下的通配符与正则表达式的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我的网址看起来像 '/api/comments/languages/124/component/segment_translation/2' 我知道 url 的哪些部分是静态的;并且是动态的 - 并且
如何使用通配符查找和替换主域之后的所有字符(包括“/”字符)? 例如,我有以下 4 行: intersport-schaeftlmaier.de/ weymouthhondapowersports.c
我有 3 个控件,其 ID 为 control_1、control_2、control_3。 我想隐藏这些控件。 目前我正在使用这个: $('#control_1').hide(); $('#cont
我有一个旧歌曲数据库,我想将其转移到新数据库。我的旧数据库看起来像这样,多个值被填充在一个用逗号分隔的字段中 SONG id | title | artist |
首先,我知道downloads表没有标准化。 我有这两个表: downloads map | author 1 | Nikola 2 | Nikola George 和 mappers mapper_
通配符可用于替代字符串中的任何其他字符。 SQL 通配符 在 SQL 中,通配符与 SQL LIKE 操作符一起使用。 SQL 通配符用于搜索表中的数据。 在 SQL 中,可使用以下通配符:
我在 shell 脚本中有一行看起来像这样: java -jar "$dir/"*.jar ,因为我只想执行该文件夹中恰好命名的 jar 文件。但这并不像我预期的那样有效。我收到错误消息: Error
我想在 Active Directory 用户的所有属性中搜索特定电话号码/分机号。 我可以像这样获取所有属性: get-aduser joesmith -Properties * 但我想过滤结果,例
我在运行 Python 3在 Windows 机器上使用 PowerShell .我正在尝试执行一个 Python 文件,然后使用通配符将多个文件(file1.html、file2.html 等)作为
我有一个 div,并且有一些处于未定义级别的子节点。 现在我必须将每个元素的 ID 更改为一个 div。如何实现? 我想,因为它们有向上的ID,所以如果父级是id='path_test_maindiv
我是 Lua 的新手,所以我现在正在学习运算符部分。在 Lua 中是否有与字符串一起使用的通配符? 我有 PHP 背景,我实际上是在尝试编写以下代码: --scan the directory's f
我在 countList 方法上遇到编译时错误。 public static void countList( List list, int count ){ for( int i =
我们需要在运行时检索多个类实例,而无需手动维护所有可用类型的列表。 可能的方法: 检索带有@xy注释的每种类型的实例 检索每种类型的实例实现接口(interface)iXY 检索每种类型的实例,命名如
我目前陷入了序言问题。 到目前为止我有: film(Title) :- movie(Title,_,_).(其中“movie(T,_,_,)”是对我的引用数据库) namesearch(Title,
我想从字符表达式(在 R 中)中删除一个“*”。在阅读帮助页面并尝试谷歌后,我无法充分理解 gsub 的复杂性。有人可以建议我该怎么做吗? 谢谢, 乔纳森。 最佳答案 您需要转义两次:一次针对 R,一
在我的 DOM 中,我有一个动态生成对话框的表。 DOM 中的对话框将具有以下形式的 ID: id="page:form:0:dlg" id="page:form:1:dlg" id="page:fo
我是 Java 新手,并且已经陷入这样一种情况,很明显我误解了它如何处理泛型,但是阅读教程和搜索 stackoverflow 并没有(至少到目前为止)让我清楚我怀疑我滥用了通配符。需要注意的是,我有
我想使用 jQuery 更改单击时图像的 src 属性。这是 HTML: View 2 在 img src 中,我想将“a”替换为“b”,但我的问题是我想忽略它前面的“1”,因为它也可能看起来像这样
我有一个 mysql 数据库,我的表是: Name | passcode ---------------------- hi* | 1111 ------------------
我想选择所有在星号所在位置具有确切 4 个“未知”字符的文档:(例如“****”可能是“2018”) foreach (string s in Directory.GetFiles(@"C:\User
我是一名优秀的程序员,十分优秀!