LoginSignup
8
11

More than 5 years have passed since last update.

Macの全置換で sed: RE error: illegal byte sequence が出たら

Last updated at Posted at 2015-11-18
$ export LANG=C

を流せば解決。

全置換のメモ

ファイルの文字列を置換(Mac用)
sed -i '' "s/ihoge/piyo/g” *.php
findとxargsを組み合わせると
find ./ -name *.php | xargs sed -i '' "s/hoge/piyo/g"
8
11
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
8
11