Linux鳥哥視頻學習筆記21

正則表達式1 grep 實操 cd /tmp cat -n test grep '^[a-z]' test 顯示出以字母爲開頭的所有行內容 grep '^[tg]' test 顯示出以字母t或g爲開頭的所有行內容 grep '!$' test 顯示出所有以感嘆號爲結尾的行內容 grep '\.$' test 顯示所有以句號結尾的,這裏用到了轉義  實操 grep 'h...o' test 顯示以h
相關文章
相關標籤/搜索