I have some scripts which do some processing on a file. Typically they accept the file as their first command-line argument, and other arguments after that.
I want to write a master script which accepts the name of the script to run, a wildcard specifying the target files (a-la glob
), and possibly arguments to pass to the input script. The master script shall iterate over the files, and run the input script with the additional arguments.
Note that the input scripts are legacy, and possibly do not contain the usual if __name__ == "__main__":
line at the end. They may also access sys.argv
.
Any suggestions?
import glob
Should get you started,
I would also subprocess the scripts and pass them arguments.