我正在通过python-tkinter制作一个应用程序;我无法理解如何使用它运行shell脚本。
我的用例是,当我按下一个按钮时,它将调用一个shell脚本并在GUI中显示其输出。
您正在寻找子流程模块:
https://docs.python.org/3/library/subprocess.html
一个例子:
subprocess.run(["ls"]). # run ls
output = subprocess.check_output(["ls"]) # grab the output of ls