LoginSignup
1
0

More than 5 years have passed since last update.

ファイルから非ASCII文字列を駆逐するワンライナー

Last updated at Posted at 2017-01-08

ツール使ってアクセスログ集計してたらUAにUnicodeとか紛れてて邪魔くさい…
そんな時は以下のワンライナーで全部消えます。

# ファイル上書きしても良い
perl -pi -e 's/[^[:ascii:]]+//g;' *.log

# ファイル上書きしたくない
perl -pi.bak -e 's/[^[:ascii:]]+//g;' *.log

やったね

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0