2015.09.14 10:42
일반적인 두 파일 비교에 diff 명령어를 사용합니다.
file1 : this is test
file2 : this is server
#diff file1 file2
1c1
< this is test.
---
> this is server.
단순히 두 파일이 같은지 다른지 확인하려면 --brief 옵션을 사용합니다.
#diff --brief file1 file2
Files file1 and file2 differ