1#!/usr/bin/env python3
2
3import sys
4
5with open(sys.argv[1], 'w') as f:
6    f.write('Test')
7