7 lines
92 B
Python
7 lines
92 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import shutil
|
|
|
|
shutil.copyfile(sys.argv[1], sys.argv[2])
|