6 lines
88 B
Python
6 lines
88 B
Python
#! /usr/bin/env python3
|
|
|
|
import sys
|
|
from shutil import copyfile
|
|
copyfile(*sys.argv[1:])
|