LoginSignup
2
0

More than 1 year has passed since last update.

【ベン図付き】diffコマンドで差分のみテキスト抽出

Posted at

FileAにあってFileBにないもの

$ diff --old-line-format='%L' --new-line-format='' --unchanged-line-format='' FileA FileB

Aのみ.png

FileBにあってFileAにないもの

$ diff --old-line-format='' --new-line-format='%L' --unchanged-line-format='' FileA FileB

Bのみ.png

FileAまたはFileBにしかないもの

$ diff --old-line-format='%L' --new-line-format='%L' --unchanged-line-format='' FileA FileB

AまたはBのみ.png

参考リンク

2
0
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
2
0