diff - 行番号出力

diff - 行番号出力

ファイル比較のために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語の価値があります。wnoise2つの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="

残念ながら、行形式オプションがdiffdo:オプションをサポートしていないことがわかりました。--side-by-side

AUTO_INCRMENT行を削除すると、日付の2つの違いのみが残ります。

grepフィルタがない場合、出力は次のようになります。

5127枚| 5105枚| 5128枚| 5148)エンジン= InnoDB自動増分= 1173基本文字セット= utf8mb4ソート= utf8mb4_0900_ai_ci

行番号が一致しません。私はmeld仕事が正しく行われていることを確認することから始めました。

関連情報