cat 輸出亂碼問題解決

attitude發表於2021-03-30

今天遇到個問題,排查日誌檔案返回的結果集,使用如命令:

 cat xxx.log | grep '2021-03-07' | grep 'abc' | grep 110

發現輸出的中文亂碼,vim檢視檔案編碼:

vim xxx.log
:set fileencoding

檔案編碼為:cp936
既然會亂碼,那就簡單粗暴點,直接轉換檔案編碼,使用如下命令:

iconv -f cp936 -t utf-8 xxx.log  > xxx_utf.log

然後操作xxx_utf.log檔案:

 cat xxx_utf.log | grep '2021-03-07' | grep 'abc' | grep 110

輸出正常

本作品採用《CC 協議》,轉載必須註明作者和本文連結
attitudefx

相關文章