我有一个调用 bash 脚本的 python 脚本。bash 脚本编译了几个模块,我想在运行时看到编译结果打印在屏幕上。
无论如何,最重要的是 bash 脚本在运行时需要用户提供相当多的输入。如何让我的 python 脚本为 bash 脚本提供标准输入/标准输出?
目前我正在使用
(_stat, _resl) = commands.getstatusoutput("./myBashScript")
但是通过这种方式,当 bash 正在运行时,用户不会受到任何提示......
干杯