LoginSignup
5
6

More than 5 years have passed since last update.

【備忘録】dos2unix 改行コード変換

Last updated at Posted at 2018-10-02

ファイルの改行コード( LF -> CRLF )を変更するためのコマンド、すぐ忘れるので自分用にメモです。

Homebrewでdos2unixをインストール

Homebrewが入っていれば dos2unixを下記のコマンドでインストール

$ brew install dos2unix

dos2unix

LF(Unix) -> CRLF(Windows)

単一ファイルの場合

unix2dos hoge.txt

ディレクトリ内のファイルを一括変換する場合

$ cd path/to/folder
$ find . -type f -print0 | xargs -0 unix2dos

CRLF(Windows) -> LF(Unix)

単一ファイルの場合

dos2unix hoge.txt

ディレクトリ内のファイルを一括変換する場合

$ cd path/to/folder
$ find . -type f -print0 | xargs -0 dos2unix
5
6
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
5
6