我有几个在 Python 程序中使用的 bash 脚本。当前的解决方案是浏览到 GUI 中的文件,然后像这样运行脚本(pathToScript
是脚本路径的字符串):
INPUT = [pathToScript, input1, input2, input3, input4, input5, input6, input7, input8, input9, input10]
subprocess.call(INPUT)
为了避免总是浏览脚本或硬编码路径,我正在寻找一种解决方案,以某种方式将 bash 脚本包含在已编译的 Python 程序中,然后在程序中运行它。这可能吗?如果可以避免的话,我宁愿不将 bash 脚本重写为 Python。