阿就操場啊~
2018年6月19日 星期二
用awk根據pattern擷取文字檔案片段
一個文字檔案textFile,想要看從start pattern開始到最後的一行:
awk '
/start pattern/
,0'
上面的
/start pattern/,0
是個範圍描述,代表說從看到start pattern開始,結束也要是為真的描述,但因為0永遠都不會為真,所以會印到最後一行。因此,如果是要看從start pattern到stop pattern之間的內容,那麼指令如下:
awk '
/start pattern/
,
/stop pattern/
'
參考資料
grep lines after match until the end
_EOF_
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言