Linux常用基本命令:三劍客命令之-sed

来源:https://www.cnblogs.com/ghostwu/archive/2018/05/21/9069837.html
-Advertisement-
Play Games

sed是一個很強大的文件處理工具,主要是以行為單位進行處理,可以將數據行進行替換、刪除、新增、選取等特定工作 格式:sed [option] [command] [file] 常用命令: a ∶新增 c ∶取代 d ∶刪除 i ∶插入 p ∶列印 s ∶取代 選項: -i∶直接修改讀取的檔案內容,而 ...


sed是一個很強大的文件處理工具,主要是以行為單位進行處理,可以將數據行進行替換、刪除、新增、選取等特定工作

格式:sed [option] [command] [file]

常用命令:

        a   ∶新增
        c   ∶取代
        d   ∶刪除
         i   ∶插入
         p  ∶列印
         s  ∶取代

選項:

     -i∶直接修改讀取的檔案內容,而不是由螢幕輸出。       

    -n∶使用安靜(silent)模式。在一般 sed 的用法中,所有來自 STDIN的資料一般都會被列出到螢幕上。但如果加上 -n 參數後,則只有經過sed 特殊處理的那一行(或者動作)才會被列出來。

 

1,sed '1d' ghostwu.com   d代表刪除 d前面的數字代表刪除第一行,該命令不會修改文件本身

ghostwu@dev:~/linux/sed$ cat -n ghostwu.txt 
     1    this is ghostwu
     2    how are you
     3    hod old are you
     4    and you
     5    fine thank you
     6    come with me!!!
ghostwu@dev:~/linux/sed$ sed '1d' ghostwu.txt 
how are you
hod old are you
and you
fine thank you
come with me!!!
ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
hod old are you
and you
fine thank you
come with me!!!

2,刪除最後一行,$代表最後一行

ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
hod old are you
and you
fine thank you
come with me!!!
ghostwu@dev:~/linux/sed$ sed '$d' ghostwu.txt 
this is ghostwu
how are you
hod old are you
and you
fine thank you

3,刪除第一行到第二行

ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
hod old are you
and you
fine thank you
come with me!!!
ghostwu@dev:~/linux/sed$ sed '1,2d' ghostwu.txt 
hod old are you
and you
fine thank you
come with me!!!

4,刪除第二行到最後一行

ghostwu@dev:~/linux/sed$ sed '2,$d' ghostwu.txt 
this is ghostwu

5,查找包含'you'的行,  /you/ 這是正則表達式, p是列印,要跟n結合起來用

ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
hod old are you
and you
fine thank you
come with me!!!
ghostwu@dev:~/linux/sed$ sed -n '/you/p' ghostwu.txt 
how are you
hod old are you
and you
fine thank you

6,匹配$符號結尾的行

$符號在正則表達式表示行尾,所以要用\ 轉義

ghostwu@dev:~/linux/sed$ sed -n '/\$/p' ghostwu.txt 
50$

7,在第一行後面,增加一行“你好啊"

ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
hod old are you
and you
fine thank you
come with me!!!
how much do you have
50$
oh, is it?
yes
ghostwu@dev:~/linux/sed$ sed '1a 你好啊' ghostwu.txt 
this is ghostwu
你好啊
how are you
hod old are you
and you
fine thank you
come with me!!!
how much do you have
50$
oh, is it?
yes

8,在第一行和第二行的後面,增加一行

ghostwu@dev:~/linux/sed$ sed '1,2a learning how to use sed command' ghostwu.txt this is ghostwu
learning how to use sed command
how are you
learning how to use sed command
fine thank you

9,也可以增加多行

ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
fine thank you
ghostwu@dev:~/linux/sed$ sed '1a 你好啊\n很高興認識你' ghostwu.txt 
this is ghostwu
你好啊
很高興認識你
how are you
fine thank you

10, c為替換操作,數字的意思,跟上面的a一樣,代表行

ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
fine thank you
ghostwu@dev:~/linux/sed$ sed '1,2c hey guy' ghostwu.txt 
hey guy
fine thank you
ghostwu@dev:~/linux/sed$ sed '1c hey guy' ghostwu.txt 
hey guy
how are you
fine thank you

11, s:替換匹配到的內容, s:替換開始 /is/ 匹配包含is的行   g:全部替換

ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
fine thank you
ghostwu@dev:~/linux/sed$ sed 's/is/IS/' ghostwu.txt 
thIS is ghostwu
how are you
fine thank you
ghostwu@dev:~/linux/sed$ sed 's/is/IS/g' ghostwu.txt 
thIS IS ghostwu
how are you
fine thank you
ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
fine thank you

12、-i :修改,插入文件,會影響文件的內容,在最後一行,插入bye bye

ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
fine thank you
ghostwu@dev:~/linux/sed$ sed -i '$a bye bye' ghostwu.txt 
ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
fine thank you
bye bye

13,在1-3行,每一行的後面都插入一行數字

ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
how are you
fine thank you
bye bye
ghostwu@dev:~/linux/sed$ sed -i '1,3a 123457' ghostwu.txt 
ghostwu@dev:~/linux/sed$ cat ghostwu.txt 
this is ghostwu
123457
how are you
123457
fine thank you
123457
bye bye

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • http協議 協議:是一種規則或者規定 tcp/ip協議:規則了tcp客戶端與tcp伺服器數據的通訊格式 1.知識點是什麼:http協議 2.知識點有什麼:規定瀏覽器與伺服器(tcp伺服器)之間的數據通訊格式 3.請求的協議格式<客戶端(瀏覽器)發數據給伺服器> GET /index.html HT ...
  • 使用.net core也有一段時間了,一直都沒有Oracle官方的正式版驅動程式,更別說EF版本了。之前基於Oracle官方的.net core預覽版本寫了個Dapper的資料庫操作實現,但是總感覺不太完美,有消息稱Oracle官方的EF版本可能要到第三季度出了,還需要靜靜等待幾個月的時間。 既然有 ...
  • 5章 字元與字元串 1.字元類char的使用 2.轉義字元的使用 3.字元串類string的使用 4.比較字元串 5.格式化字元串 6.截圖,分割字元串 7.插入與填充字元串 8.刪除,複製,替換字元串 9.StringBuilder的使用 6章 流程式控制制語句 1.選擇語句 2.迭代語句 3.跳轉語 ...
  • 在做後臺管理系統的同學們,是否有用easyui的經歷。雖然現在都是vue、ng、react的時代。但easyui(也就是jquery為基礎)還是占有一席之地的。因為他對後端開發者太友好了,太熟悉不過了。要讓一個後端開發者來理解vue或者是react的VNode、狀態器、組件等,都是有那麼一點點的為難 ...
  • .NET Orm 性能測試 簡介 "OrmBenchmark" 這個項目主要是為了測試主要的Orm對於 SqlServer 資料庫的查詢並將數據轉換成所需 POCO 對象的耗時情況(好吧,實際上不完全orm,更像是SqlMapper ...) 測試結果: .NetFramework 4.6 有預熱 ...
  • 博客四元素 既然要寫一個博客類的網站,那就應該知道博客的相關信息。 標題|作者|時間|內容 | | | title|author|time|content 因為之前有瞭解過Redis,所以有點糾結於數據的存儲方式,最終決定還是按照書上寫的一步一步來,搞完了之後再決定是不是需要做修改。 書中介紹的存儲 ...
  • 正則表達式就是處理字元串的方法,它是以行為單位來進行字元串的處理行為,正則表達式通過一些特殊符號的輔助,可以讓用戶輕易達到查找、刪除、替換某特定字元串的處理程式。正則表達式基本上是一種“表示法”,只要工具支持這種表示法,那麼該工具就可以用來作為正則表達式的字元串處理之用。 ...
  • 用64位windows10的CMD命令安裝pip install scrapy出錯: Running setup.py bdist_wheel for Twisted ... error Failed building wheel for Twisted Running setup.py clean ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...