파일 비교를 위해 cli 도구를 사용하고 싶고 라인을 출력하기 전에 라인 번호가 필요합니다. 이 도구를 사용하면 라인 차이로 이동할 수 있습니다. 왜냐하면 제가 사용하는 도구는 라인이 이렇게 시작하면 점프할 위치를 이해할 수 있기 때문입니다.:line-number: regular line contents
그래서 나는 그것을 시도했고 diff
, 가능한 것처럼 보이는 문서를 읽었습니다.
-D, --ifdef=NAME output merged file with `#ifdef NAME' diffs
--GTYPE-group-format=GFMT format GTYPE input groups with GFMT
--line-format=LFMT format all input lines with LFMT
--LTYPE-line-format=LFMT format LTYPE input lines with LFMT
These format options provide fine-grained control over the output
of diff, generalizing -D/--ifdef.
LTYPE is `old', `new', or `unchanged'. GTYPE is LTYPE or `changed'.
GFMT (only) may contain:
%< lines from FILE1
%> lines from FILE2
%= lines common to FILE1 and FILE2
%[-][WIDTH][.[PREC]]{doxX}LETTER printf-style spec for LETTER
LETTERs are as follows for new group, lower case for old group:
F first line number
L last line number
N number of lines = L-F+1
E F-1
M L+1
%(A=B?T:E) if A equals B then T else E
LFMT (only) may contain:
%L contents of line
%l contents of line, excluding any trailing newline
%[-][WIDTH][.[PREC]]{doxX}n printf-style spec for input line number
Both GFMT and LFMT may contain:
%% %
%c'C' the single character C
%c'\OOO' the character with octal code OOO
C the character C (other characters represent themselves)
하지만 이 복잡한 스위치에 대한 예나 설명은 없습니다.
그런 출력을 얻을 수 있습니까 diff
? 그렇다면 어떨까요?
답변1
예, 가능합니다. 이러한 옵션을 사용할 때 기본값은 각 줄을 인쇄하는 것입니다. 이는 매우 장황하며 원하는 내용이 아닙니다.
diff --unchanged-line-format=""
변경되지 않은 행은 제거되므로 이제 이전 행과 새 행만 생성됩니다.
diff --unchanged-line-format="" --new-line-format=":%dn: %L"
:<linenumber>:
이제 공백이 앞에 붙은 새 줄이 표시되지만 이전 줄은 계속 인쇄됩니다. 당신이 그들을 제거하고 싶다고 가정 해 봅시다.
diff --unchanged-line-format="" --old-line-format="" --new-line-format=":%dn: %L"
새 줄 대신 기존 줄을 인쇄하려면 줄을 바꾸세요.
답변2
때로는 사진이나 예가 1000 단어의 가치가 있습니다. wnoise
두 개의 MySQL(구조체) 덤프를 "비교"하기 위해 위의 답변을 기반으로 다음 파이프라인을 구성했습니다(찬찬 투표를 부탁드립니다 ) wnoise
.
평행선 번호의 예:
diff --unchanged-line-format="" --old-line-format="%dn: %L " --new-line-format="| %dn: %L" \
./20220202-msqldump.sql ./20221130-msqldump.sql |
awk -e' /^[[:digit:]]+: )/{ previous = $0; next; } { print previous $0 }' |
grep -v -e"ENGINE=InnoDB AUTO_INCREMENT="
불행하게도 줄 형식 옵션이 diff
do: 옵션을 지원하지 않는다는 것을 발견했습니다.--side-by-side
AUTO_INCRMENT 줄을 제거하면 날짜 등 두 가지 차이점만 남습니다.
grep
필터가 없으면 출력은 다음과 같습니다.
5127장 | 5105장 | 5128장 | 5148장) 엔진 = InnoDB 자동 증분 = 1173 기본 문자 세트 = utf8mb4 정렬 = utf8mb4_0900_ai_ci
줄 번호가 일치하지 않습니다. 나는 meld
일이 제대로 진행되고 있는지 확인하는 것부터 시작하곤 했습니다 .