리눅스 diff3

Jmnote (토론 | 기여)님의 2015년 9월 5일 (토) 00:14 판 (→‎개요)

1 개요

diff3
/usr/bin/diff3
  • 파일 3개를 비교하는 리눅스 명령어
  • 세 파일의 차이를 보여줌

2 예시

[root@zetawiki ~]# cat a.txt
hello
world
[root@zetawiki ~]# cat b.txt
hello
world!
[root@zetawiki ~]# cat c.txt
hello
world
hello
[root@zetawiki ~]# diff3 a.txt b.txt c.txt
====
1:2c
  world
2:2c
  world!
3:2,3c
  world
  hello
[root@zetawiki ~]# diff3 a.txt b.txt c.txt -A
2a
||||||| b.txt
world!
=======
world
hello
>>>>>>> c.txt
.
1a
<<<<<<< a.txt
.

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}