mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-04-19 21:53:13 +02:00
9 lines
103 B
Python
9 lines
103 B
Python
import sys
|
|
import shutil
|
|
|
|
ffrom = sys.argv[1]
|
|
to = sys.argv[2]
|
|
shutil.copyfile(ffrom, to)
|
|
|
|
sys.exit(0)
|