summaryrefslogtreecommitdiffstats
path: root/test cases/common/51 run target/converter.py
blob: 8dd31fe2fa18287f94d4efe81bc6273e7ded44b1 (plain)
1
2
3
4
5
6
#!/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())