mirror of
https://github.com/ervanalb/keygen.git
synced 2025-12-16 13:25:25 +00:00
13 lines
209 B
Python
Executable File
13 lines
209 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import json
|
|
|
|
def read_json_file(fn):
|
|
with open(fn) as f:
|
|
return json.load(f)
|
|
|
|
combined = [read_json_file(fn) for fn in sys.argv[1:]]
|
|
|
|
print(json.dumps(combined))
|