Skip to content

Instantly share code, notes, and snippets.

@high5
Created January 22, 2015 08:10
Show Gist options
  • Save high5/2e51ebb333776f931b5e to your computer and use it in GitHub Desktop.
Save high5/2e51ebb333776f931b5e to your computer and use it in GitHub Desktop.
エラーログ中の全角の文字化けを回避
tail -f logs/error.log | perl -nle 's/\\x(..)/pack("C",hex($1))/eg;print $_'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment