Made the python file open a file and print contents
This commit is contained in:
parent
f7220c3d42
commit
6324e867c0
|
@ -0,0 +1,8 @@
|
|||
import os
|
||||
scriptPath = input("What patch file do you want to run?")
|
||||
script = open(scriptPath, "r")
|
||||
|
||||
for line in script:
|
||||
print(line)
|
||||
|
||||
script.close()
|
Loading…
Reference in New Issue
Block a user