LoginSignup
6
6

More than 5 years have passed since last update.

ackを使って一括置換

Last updated at Posted at 2014-04-09

コマンドラインで何かを探すとき、grepは結構使い勝手が悪いので、ackを好んで使っていますが、ある時特定のキーワードを一括置換する必要があった時に、ackで出来ないかなと思い調べたので共有します。

結果から書くと以下でPHPファイルにある「image.gif」を「image.jpg」に置換出来ます。


$ ack -f --php | xargs perl -p -i -e 's/image\.gif/image\.jpg/g'

※メタ文字はエスケープしましょう!詳細はコメントを参照してください。

参考

ackコマンド
http://d.hatena.ne.jp/yutakikuchi/20110523/1306111855

6
6
2

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
6
6