scons_gd/scons/test/Actions/pre-post-fixture/work4/build.py
2022-10-15 16:06:26 +02:00

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())