gen1.py 237 B

12345678910111213
  1. #!/usr/bin/env python3
  2. import time, sys
  3. # Make sure other script runs first if dependency
  4. # is missing.
  5. time.sleep(0.5)
  6. with open(sys.argv[1], 'r') as f:
  7. contents = f.read()
  8. with open(sys.argv[2], 'w') as f:
  9. f.write(contents)