我正在运行telnet lib的示例脚本,并观察到该脚本正在打印到控制台上。
import getpass
import sys
import telnetlib
HOST = "xxxxxxxxx"
user = raw_input("Enter your remote account: ")
password = getpass.getpass()
tn = telnetlib.Telnet(HOST)
tn.read_until("login: ")
tn.write(user + "\n")
if password:
tn.read_until("Password: ")
tn.write(password + "\n")
tn.write("ls\n")
tn.write("exit\n")
print tn.read_all()
,它什么也没返回 目标是Windows计算机,执行脚本的源是Linux。