我在系統上使用ip x。我想從s到系統ip y從X,做一些工作在y外殼使用x並出來退出到x再次..使用pythonpython和ssh從x到Y
我有以下python代碼片段,我打算在x上運行
if __name__ == "__main__":
print "inside main of python file"
command="ssh [email protected]"
output=subprocess.Popen(command, shell =False)
當我運行此我希望新外殼將在目前的外殼打開,然後我可以繼續用172.1.1.2 wrkg。但是我發現我現在的殼得到了SSH損壞後到172.1.1.2已完成 。
我想我做錯了什麼。