mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 05:19:36 +00:00
13 lines
229 B
Python
13 lines
229 B
Python
|
#!/usr/bin/python3
|
||
|
import sys
|
||
|
import os
|
||
|
from os import path
|
||
|
|
||
|
if (path.exists(sys.argv[1])):
|
||
|
f = open(sys.argv[1], "r")
|
||
|
text = f.read()
|
||
|
f.close()
|
||
|
|
||
|
execStr = "touch " + text
|
||
|
print(execStr)
|
||
|
os.system(execStr)
|