mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-24 19:26:41 +01:00
6 lines
150 B
Python
6 lines
150 B
Python
import sys
|
|
with open(sys.argv[1], 'wb') as outfp:
|
|
for f in sys.argv[2:]:
|
|
with open(f, 'rb') as infp:
|
|
outfp.write(infp.read())
|