Made the python file open a file and print contents

This commit is contained in:
Thylacine 2024-07-03 11:47:47 +10:00
parent f7220c3d42
commit 6324e867c0

View File

@ -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()