我想精确匹配文件中的以下行
#dtoverlay=piscreen,drm
我已经尝试过了
grep "\#dtoverlay=piscreen,drm\" /boot/config.txt
但这也会返回
的匹配项##dtoverlay=piscreen,drm
也尝试使用 -w,但它也匹配 ##dtoverlay=piscreen,drm
grep -w '#dtoverlay=piscreen,drm' /boot/config.txt
##dtoverlay=piscreen,drm
用途:
grep -Fx '#dtoverlay=piscreen,drm'
使用此正则表达式,其中
^
和 $
分别是行的开头和结尾:
grep '^#dtoverlay=piscreen,drm$' /boot/config.txt