1. 程式人生 > >linux grep顯示指定內容前後指定行數的方法

linux grep顯示指定內容前後指定行數的方法

在日常應用中,有時會需要查詢一個檔案內指定內容之前或者之後幾行內容,可以用如下方法解決:


檔名:/etc/httpd/conf/httpd.conf


指定內容:​


查詢前後5行內容:


cat /etc/httpd/conf/httpd.conf | grep -5 ^\


查詢之後5行內容:


cat /etc/httpd/conf/httpd.conf | grep -A 5 ^\


查詢之前5行內容:​


cat /etc/httpd/conf/httpd.conf | grep -B 5 ^\


以上命令在CentOS 6.5 64位下測試通過。