mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-18 17:14:38 +01:00
3 lines
103 B
Python
3 lines
103 B
Python
import sys
|
|
with open(sys.argv[1], 'wb') as f, open(sys.argv[2], 'rb') as infp:
|
|
f.write(infp.read()) |