diff命令適用于比較多個(gè)文本本件的差異
diff命令格式為:“wc [參數(shù)] 文件”
diff參數(shù)
--normal
? ? ? ? ? ? ? output a normal diff (the default)
? ? ? -q, --brief
? ? ? ? ? ? ? report only when files differ
? ? ? -s, --report-identical-files
? ? ? ? ? ? ? report when two files are the same
? ? ? -c, -C NUM, --context[=NUM]
? ? ? ? ? ? ? output NUM (default 3) lines of copied context
? ? ? -u, -U NUM, --unified[=NUM]
? ? ? ? ? ? ? output NUM (default 3) lines of unified context
? ? ? -e, --ed
? ? ? ? ? ? ? output an ed script
? ? ? -n, --rcs
? ? ? ? ? ? ? output an RCS format diff
? ? ? -y, --side-by-side
? ? ? ? ? ? ? output in two columns
? ? ? -W, --width=NUM
? ? ? ? ? ? ? output at most NUM (default 130) print columns
? ? ? --left-column
? ? ? ? ? ? ? output only the left column of common lines
用例:
diff -c a.log b.log