mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
7cf8bf0b88
Also use snake_case for splat_ext types
13 lines
250 B
Python
13 lines
250 B
Python
#! /usr/bin/python3
|
|
|
|
from sys import argv
|
|
|
|
if __name__ == "__main__":
|
|
argv.pop(0) # python3
|
|
out = argv.pop(0)
|
|
|
|
with open(out, "wb") as f:
|
|
for path in argv:
|
|
with open(path, "rb") as j:
|
|
f.write(j.read())
|