Skip to content

Instantly share code, notes, and snippets.

@yusukeaiko
Created September 9, 2014 01:49
Show Gist options
  • Save yusukeaiko/9bc7973309017472fdbc to your computer and use it in GitHub Desktop.
Save yusukeaiko/9bc7973309017472fdbc to your computer and use it in GitHub Desktop.
キーワードを含んだ複数ファイルの文字列を一括置換 ref: http://qiita.com/Vit-Symty/items/80826158a00ec88311c6
find . -type f -print | xargs grep -l hoge | xargs sed -i "s/hoge/bar/g" ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment