mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-05 22:55:19 +00:00
8 lines
185 B
Python
8 lines
185 B
Python
import difflib
|
|
import sys
|
|
|
|
diff = difflib.unified_diff(
|
|
open(sys.argv[1]).readlines(),
|
|
open(sys.argv[2]).readlines())
|
|
with open(sys.argv[3], 'w') as f:
|
|
f.write(''.join(diff))
|