发布时间:2019-09-11 07:46:27编辑:auto阅读(2741)
1.
cmd = "some unix command" retcode = subprocess.call(cmd,shell=True)
2.
ssh = paramiko.SSHClient() ssh.connect(server, username=username, password=password) ssh_stdin, ssh_stdout, ssh_stderr = ssh.exec_command(cmd_to_execute)
3.
import commands
command = "nslookup " + node + " | grep Name -1 | grep Address| awk '{print $2}'"
result = commands.getoutput(command)
if (result == ""):
return "unknown"4.
sshProcess = subprocess.Popen(['ssh', <remote client>], ,stdin=subprocess.PIPE, stdout = subprocess.PIPE)
sshProcess.stdin.write("ls mydirectory\n")
sshProcess.stdin.write("echo END\n")
for line in stdout.readlines():
if line == "END\n":
break
print(line)
sshProcess.stdin.write("uptime\n")
sshProcess.stdin.write("echo END\n")
for line in stdout.readlines():
if line == "END\n":
break
print(line)
上一篇: python split多个分隔符
下一篇: python 基础 数据类型
51333
50787
41380
38183
32672
29564
28404
23280
23245
21570
1651°
2381°
1987°
1927°
2255°
1959°
2656°
4456°
4283°
3053°