9 lines
120 B
Python
Executable File
9 lines
120 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
ifile = sys.argv[1]
|
|
ofile = sys.argv[2]
|
|
|
|
open(ofile, 'w').write(open(ifile).read())
|