7 lines
139 B
Python
7 lines
139 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
with open(sys.argv[1], 'rb') as ifile, open(sys.argv[2], 'wb') as ofile:
|
|
ofile.write(ifile.read())
|