diff-出力行番号


25

ファイルの比較に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ですか?もしそうならどのように?

回答:


45

はい、可能です。これらのオプションを使用する場合、デフォルトではすべての行が印刷されます。これは非常に冗長であり、必要なものではありません。

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"

新しい行ではなく古い行を印刷する場合は、それらを入れ替えます。


ただ素晴らしい!ありがとう:)私はヘルプリストから推測しようとしましたが、成功なしで、私はそれを読み間違えたと思いました。次に、Pythonで必要なもの(difflibリストオブジェクトの行ごとにインデックス付きファイルを使用するモジュール)を作成diff <(pipe buffer1) <(pipe buffer2)しましたが、Pythonで使用することはできませんでしたdiff。今、あなたは私を救った:)
ゼータ

*を使用し、ディレクトリがある場合は機能しません。
ハーマン歯磨き
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.