25
24

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 1 year has passed since last update.

便利なdiffコマンド使い方

Last updated at Posted at 2020-04-06

ファイルを比較する

diff {ファイルA} {ファイルB}

差分に!をつけて比較する

diff -c {ファイルA} {ファイルB}

大文字と小文字を区別せずに比較する

diff -i {ファイルA} {ファイルB}

ファイルが同一の場合、同一と表示する

diff -s {ファイルA} {ファイルB}

ファイルの中身が異なる場合、中身を表示せずに異なると表示する

diff -q {ファイルA} {ファイルB}

空白を無視してファイルを比較する

diff -w {ファイルA} {ファイルB}

ディレクトリごと比較する

diff -r {ディレクトリA} {ディレクトリB}

中身を表示せずにディレクトリごと比較する

diff -rq {ディレクトリA} {ディレクトリB}
25
24
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
25
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?