我明白了,我们可以使用子进程执行 Linux Shell 命令
import subprocess
subprocess.call(["ls", "-l"])
如果我想在终端上运行CTRL+操作怎么办?C
我的用例是:
1> Open a linux screen
2> Run a command over first window
3> Then create a window in the same screen
4> Run another command over the second window
很明显,我想自动化我日常生活的某些部分。