linux下查找文件中某字符串出現的行數以及該行的先後N行

第一種sed grep -A 100 -B 100  'ORA-00600' alert_orcl1.log -A after 後面 -B before 前面file   第二種grep grep -in 'ORA-00600' alert_orcl1.log |head -1文件 返回行數 1974220:ORA-00600 ... sed -n '1974210,1974220p' alert
相關文章
相關標籤/搜索