1.排除命令(取反)
1 this is the header line
2 this is the first line
3 this is the second line
4 this is the last line
使用排除的方式列印出不包含header的所有行的內容
# 不使用!取反列印出的內容
[root@tf1 sed-gaoji]
# sed -n '/header/p' data3.txt
this is the header line
# 使用!排除包含header行之後列印出內容
[root@tf1 sed-gaoji]
# sed -n '/header/!p' data3.txt
this is the first line
this is the second line
this is the last line
sed的基本用法
sed的工作流程 sed stream editor,流編輯器,預設對原檔案不做任何處理,僅對模式空間的資料進行處理,處理結束後,將模式空間列印至螢幕。sed逐行將檔案讀取到模式空間 記憶體 進行模式匹配,如果符合模式進行編輯 取決給的編輯命令 之後進行下一行的操作sed命令格式 sed optio...
sed 的相關用法
寫本篇部落格時,正在讀一本叫做 sed awk 的第三版書籍,這本書真的很不錯,作為一本熱門技術書籍,足以見得作者是乙個很用心的人,當然我看的是中文翻譯版的,翻譯作者同樣用心 感謝作者提供這樣優秀的書籍供熱愛技術的人們學習,感謝。說起sed,不得不說一說ed,首先來說ed類的編輯器都是基於行進行操作...
sed命令的用法
sed命令的用法 sed 的基本命令 1 替換 s命令 1.1 基本用法 如 sed s day night new 該例子將檔案 old 中的每一行第一次出現的 day 替換成 night,將結果輸出到檔案 new s 替換 命令 分割符 delimiter day 搜尋字串 night 替換字串...