1.$含义

linux正则表达式$表示行尾字符,例如,word$表示待搜索的字符串(word)在行尾

2.样例

正则表达式$样例

命令:

grep -n "sda$" anaconda-ks.cfg 

表示搜索行尾字符串为sda的行

[root@elasticsearch ~]# grep -n "sda$" anaconda-ks.cfg 
10:ignoredisk --only-use=sda
27:bootloader --location=mbr --boot-drive=sda
[root@elasticsearch ~]#