1 May 2014

[Shell] 複数ファイルの改行コードを変換したい。

一括で改行コードを変換しなくちゃならなかったので作業メモ

参考にしたサイトは、
改行コードの変換
http://osksn2.hep.sci.osaka-u.ac.jp/~taku/osx/crlf.html 
find/xargsを使った検索に便利なコマンド一覧
http://uguisu.skr.jp/Windows/find_xargs.html
oldMac, Windows -> Unix
find . -type f -print0 | xargs -0 nkf -Lu --in-place

oldMac, Unix -> Windows
find . -type f -print0 | xargs -0 nkf -Lw --in-place