本章介紹了SED如何處理Pattern Range(模式范圍) 。Pattern Range可以是簡(jiǎn)單的文本或復(fù)雜的正則表達(dá)式。下面的示例打印作者Paulo的所有書(shū)籍。
$sed -n '/Paulo/p' books.txt
執(zhí)行上述代碼后,您將得到以下輸出:
3) The Alchemist, Paulo Coelho, 197 5) The Pilgrimage, Paulo Coelho, 288
在上面的示例中,SED在每一行上操作,并且僅打印與字符串Paulo匹配的那些行。
我們還可以將Pattern Range 與Address Range結(jié)合在一起。以下示例打印從"Alchemist"的第一個(gè)匹配開(kāi)始到第五行。
$sed -n '/Alchemist/, 5 p' books.txt
執(zhí)行上述代碼后,您將得到以下輸出:
3) The Alchemist, Paulo Coelho, 197 4) The Fellowship of the Ring, J. R. R. Tolkien, 432 5) The Pilgrimage, Paulo Coelho, 288
找到第一個(gè)匹配項(xiàng)后,我們可以使用 Dollar($) 字符打印所有行。下面的示例查找 The 的第一個(gè)匹配項(xiàng),并立即打印文件中的其余行
$sed -n '/The/,$p' books.txt
執(zhí)行上述代碼后,您將得到以下輸出:
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
我們還可以使用 逗號(hào)(,) 運(yùn)算符指定多個(gè)Pattern Range(模式范圍) 。下面的示例打印匹配 "Two" 和 "Pilgrimage" 之間存在的所有行。
$sed -n '/Two/, /Pilgrimage/p' books.txt
執(zhí)行上述代碼后,您將得到以下輸出:
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
另外,我們可以在模式范圍內(nèi)使用 plus(+) 運(yùn)算符。下面的示例查找 "Two" 的第一個(gè)匹配項(xiàng),并在其后打印接下來(lái)的4行。
$sed -n '/Two/, +4 p' books.txt
執(zhí)行上述代碼后,您將得到以下輸出:
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