40
26

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gnu-sedのインストール

Last updated at Posted at 2015-09-23

osx標準のsedはPOSIX sedなので-iオプションが使えないので不便極まります。
GNU sedがhomebrewに入っているので以下のコマンドでインストール。

$ brew install gnu-sed

これで、ディレクトリ以下のtxtファイルのhogehageに書き換えるのに以下のコマンドだけで済みます。

$ gsed -i "s/hoge/hage/g" *.txt

-iオプションがないPOSIX sedならおそらく以下のようになります。

$ for i in *.txt; do cat $i | sed "s/hoge/hage/g" > $i.new; mv $i.new $i; done

最悪! :scream:
素直にgnu-sedインストールすべきですね。

個人的はosx標準のsedをzshのaliasで上書きしています。

.zshrc
alias sed='gsed'

sed便利 :triumph:

追記

コメントにてgnu-sedを標準のsedの代わりにデフォルトで使う設定にするインストール方法を教えていただきました :tada:
--with-default-namesオプションを付けます :thumbsup: :thumbsup: :thumbsup:

$ brew install gnu-sed --with-default-names

:triumph: homebrew便利 :triumph:

追記の追記

いつもは :kobito: kobito :kobito: で書いてるんだけどqiitaで追記 :pencil: 書いてる時に絵文字パレットの存在を知ってしまって絵文字欲が抑えきれなくなりました :rocket:

40
26
3

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
40
26

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?