Move mergeabis script to scripts folder

This commit is contained in:
nolash
2021-10-23 21:00:17 +02:00
parent f601b706ac
commit b0b1536f39

13
scripts/mergeabis.py Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python3
import sys
import json
merged = []
for a in sys.argv[1:]:
f = open(a, 'r')
j = json.load(f)
f.close()
merged += j
print(json.dumps(merged))