blob: 6a43b7d058b1805b683e742c0954a37869670cb5 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env python3
import sys
with open(sys.argv[1], 'w') as f:
print('# this file does nothing', file=f)
with open(sys.argv[2], 'w') as f:
print('# this file does nothing', file=f)
|