[快記]Windows 環境下快速查找大檔的關鍵字

[快記]Windows 環境下快速查找大檔的關鍵字

有時遇到了檔案Size很大的日誌, 無法使用文字編輯器開啟

 

(1) 查找行數

Grep for Windows  or Findstr

grep -n "xxxxxx"  a.log
finstr /n "xxxxx"  a.log

(ps. 可用regular expressions)

 

(2) 移至行數

More

more +{row number-1} a.log