subcomp.py 156 B

12345678
  1. #!/usr/bin/env python
  2. import sys
  3. with open(sys.argv[1], 'rb') as ifile:
  4. with open(sys.argv[2], 'w') as ofile:
  5. ofile.write('Everything ok.\n')