Files
2017-03-14 13:36:29 -04:00

12 lines
174 B
Python
Executable File

#!/usr/bin/env python
import sys
runtime_file = sys.argv[1]
with open(runtime_file, 'r') as f:
r = f.read().strip()
with open(runtime_file, 'w') as f:
f.write(r)