간단한건데 안쓰니까 자꾸까먹네 ;;
이름 diff – 두 파일의 차이점을 비교한다.
사용법 diff [options] from-file to-file
옵션으로는 자주쓰는게
-u unified 출력 형식을 사용한다.
-r 두 디렉토리를 비교할 때, 모든 하위 디렉토리는 재귀적으로(recursively) 비교한다.
-N –new-file 디렉토리 비교에서, 어떤 파일이 한 디렉토리에만 있다면 다른 디렉토
리에는 비어었는 파일이 있는 것처럼 비교한다. (간단하게 디렉토리내 새파일도 비교)
NAME patch – apply a diff file to an original
SYNOPSIS patch [options] [originalfile [patchfile]]
but usually just
patch -pnum <patchfile
이게 다인거같다 ㅇㅇ…
옵션으로 들어가는 -p는 patchfile 내 경로를 ‘ / ‘ 를 기준으로 하나를 벗겨낸다.
/u/howard/src/blurfl/blurfl.c
setting -p0 gives the entire file name unmodified, -p1 gives
u/howard/src/blurfl/blurfl.c
without the leading slash, -p4 gives
blurfl/blurfl.c
man page 너무 잘되있다zz