文本差异比较工具,快速比较两个文本或文件的差异。
python3 scripts/diff.py string "第一段文本" "第二段文本"
python3 scripts/diff.py file /path/to/file1.txt /path/to/file2.txt
python3 scripts/diff.py file /path/to/file1.txt /path/to/file2.txt --format simple
python3 scripts/diff.py file /path/to/file1.txt /path/to/file2.txt --format json
# 比较两段代码
python3 scripts/diff.py string "def hello(): print('hello')" "def hello(): print('Hello World')"
# 比较两个文件并显示统计
python3 scripts/diff.py file /tmp/a.txt /tmp/b.txt --stats
# 忽略空白字符差异
python3 scripts/diff.py string "a b" "a b" --ignore-space
共 1 个版本