diff
マンページから:
-b, --ignore-space-change
ignore changes in the amount of white space
-w, --ignore-all-space
ignore all white space
このことから-b
、-w
オプションとオプションの違いは、空白-b
の種類(タブとスペース)に敏感でなければならないことを推測します。ただし、そうではないようです。
$ diff 1.txt 2.txt
1,3c1,3
< Four spaces, changed to one tab
< Eight Spaces, changed to two tabs
< Four spaces, changed to two spaces
---
> Four spaces, changed to one tab
> Eight Spaces, changed to two tabs
> Four spaces, changed to two spaces
$ diff -b 1.txt 2.txt
$ diff -w 1.txt 2.txt
$
では、オプション-b
と-w
オプションの違いは何ですか?Kubuntu Linux 13.04上のdiffutils 3.2でテスト済み。