Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要做的是在另一台计算机上从 python 运行 bash 脚本。我的第一个想法是使用 python SSH 到我的远程计算机,并以这种方式运行它。有没有其他方法可以在 python 中运行远程 bash 脚本?
顺便说一句,远程 bash 脚本与我的 python 脚本在同一个网络上。
正如其他人所说,ssh这是执行此操作的正常方法。如果您需要分离其他程序(您不想让ssh链接保持打开状态),请查看screen. 当然有更有效的方法可以做到这一点,但您必须提供更多信息才能获得更详细的答案。
ssh
screen