linux grep 查詢多行的方法

linux grep 查詢多行的方法

常常查詢 git log 中使用的方法, 以下linux

git log |grep "xxxx"git

若是想查詢多行的話, 就有些尷尬, 若是想查詢多行的話, 方法以下:it

//查詢上下
git log |grep "xxxx" -C 5grep

//查詢日後 after
git log |grep "xxxx" -A 5方法

//查詢往前 before
git log |grep "xxxx" -B 5查詢

相關文章
相關標籤/搜索