本章介紹SED支持的基本命令及其命令行語法,SED可以通過以下兩種形式調(diào)用:
sed [-n] [-e] 'command(s)' files sed [-n] -f scriptfile files
首先,使用 cat 命令顯示文件內(nèi)容。
$cat books.txt
執(zhí)行上述代碼后,您將得到以下輸出:
1) A Storm of Swords, George R. R. Martin, 1216 2) The Two Towers, J. R. R. Tolkien, 352 3) The Alchemist, Paulo Coelho, 197 4) The Fellowship of the Ring, J. R. R. Tolkien, 432 5) The Pilgrimage, Paulo Coelho, 288 6) A Game of Thrones, George R. R. Martin, 864
現(xiàn)在指示SED僅刪除某些行。在這里,要刪除三行,我們使用-e選項指定了三個單獨的命令。
$sed -e '1d' -e '2d' -e '5d' books.txt
執(zhí)行上述代碼后,您將得到以下輸出:
3) The Alchemist, Paulo Coelho, 197 4) The Fellowship of the Ring, J. R. R. Tolkien, 432 6) A Game of Thrones, George R. R. Martin, 864
此外,我們可以在一個文本文件中編寫多個SED命令,并將該文本文件作為SED的參數(shù)提供。以下示例說明了SED的第二種形式。
首先,創(chuàng)建一個包含SED命令的文本文件。為了便于理解,讓我們使用相同的SED命令。
$echo -e "1d\n2d\n5d" > commands.txt $cat commands.txt
執(zhí)行上述代碼后,您將得到以下輸出:
1d 2d 5d
現(xiàn)在指示SED從文本文件讀取命令。在這里,我們獲得了與上述示例相同的輸出。
$sed -f commands.txt books.txt
執(zhí)行上述代碼后,您將得到以下輸出:
3) The Alchemist, Paulo Coelho, 197 4) The Fellowship of the Ring, J. R. R. Tolkien, 432 6) A Game of Thrones,George R. R. Martin, 864
SED支持以下標(biāo)準選項:
-n : 模式緩沖區(qū)的默認打印。如以下SED命令不顯示任何輸出:
$sed -n '' quote.txt
$sed -e '' -e 'p' quote.txt
執(zhí)行上述代碼后,您將得到以下輸出:
There is only one thing that makes a dream impossible to achieve: the fear of failure. There is only one thing that makes a dream impossible to achieve: the fear of failure. - Paulo Coelho, The Alchemist - Paulo Coelho, The Alchemist
-f <文件名> : 下一個參數(shù)是一個包含編輯命令的文件。在下面的示例中,我們通過文件指定打印命令:
$echo "p" > commands $sed -n -f commands quote.txt
執(zhí)行上述代碼后,您將得到以下輸出:
There is only one thing that makes a dream impossible to achieve: the fear of failure. - Paulo Coelho, The Alchemist
讓我們快速瀏覽GNU特定的SED選項。請注意,這些選項是特定于GNU的。在后面的部分中,我們將更詳細地討論這些選項。
-n,--quiet,--silent? ? ? ? ? ? ? ? ? : 與標(biāo)準 -n 選項相同。
-e script ,-epression=script? ? : 與標(biāo)準 -e?選項相同。
-f script,--file=script-file? ? ? ? ?: 與標(biāo)準 -f 選項相同。
--follow-symlinks? ? ? ? ? ? ? ? ? ? ? ?: 如果提供此選項,則SED在編輯文件時遵循符號鏈接。
-i [SUFFIX],-in-place [= SUFFIX] : 此選項用于編輯文件,如果提供了后綴,它將備份原始文件,否則將覆蓋原始文件。
-l N,--line-lenght=N? ? ? ? ? ? ? ?: 此選項將l命令的行長度設(shè)置為N個字符。
-posix? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?: 此選項禁用所有GNU擴展。
-r,-regexp -extended? ? ? ? ? ? : 此選項允許使用擴展的正則表達式,而不是基本的正則表達式。
-u,--unbuffered? ? ? ? ? ? ? ? ? ? ?: 提供此選項時,SED從輸入文件中加載最少的數(shù)據(jù)量,并更頻繁地刷新輸出緩沖區(qū)。
-z,-null-data? ? ? ? ? ? ? ? ? ? ? ? ? : 默認情況下,SED用換行符分隔每行。如果提供了NULL-data選項,它將用NULL字符分隔行。