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.
ターミナルをリモートマシンにSSHで接続して終了したいpythonスクリプトを書いています。サブプロセスについて読んだことがありますが、これらは適切ではないと思います。次に、ユーザーが端末に入力したかのように、端末と対話してもらいたいと思いますssh user@server.path。
ssh user@server.path
私はそれがUbuntuで実行されていることだけに関心があります。
ありがとうございました
>>> import os >>> os.execlp('ssh', 'ssh', 'user@server')
また
import subprocess proc = subprocess.Popen(['ssh', 'user@server']) result = proc.wait() print result