day 27 sed

1、sed--打印 sed -n '/root/'p test.txt --#匹配含有root的行,沒有「-n」選項則打印全部內容 sed -nr '/o+t/'p test.txt --#匹配的關鍵詞含有特殊字符時,需要使用脫意字符,若加「-r」選項,則不需要使用脫意字符 sed -nr '/o{2}/'p test.txt --#匹配含兩個「o」的行,加「-r」選項,不需要使用脫意字符 sed
相關文章
相關標籤/搜索