로부터 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로 테스트되었습니다.