Made the python file open a file and print contents
This commit is contained in:
@@ -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()
|
Reference in New Issue
Block a user