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