summaryrefslogtreecommitdiffstats
path: root/test cases/common/129 build by default/mygen.py
blob: 5a74153ee16b330328c4c973abe9f1d727842250 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python3

import sys

ifile = open(sys.argv[1])
ofile = open(sys.argv[2], 'w')

ofile.write(ifile.read())