gpt4 book ai didi

python - 通过 ssh 验证文件是否存在

转载 作者:太空狗 更新时间:2023-10-30 00:27:11 25 4
gpt4 key购买 nike

我正在尝试使用 pexpect 通过 SSH 测试文件是否存在。我已经让大部分代码正常工作,但我需要捕获该值,以便我可以断言该文件是否存在。我完成的代码如下:

def VersionID():

ssh_newkey = 'Are you sure you want to continue connecting'
# my ssh command line
p=pexpect.spawn('ssh service@10.10.0.0')

i=p.expect([ssh_newkey,'password:',pexpect.EOF])
if i==0:
p.sendline('yes')
i=p.expect([ssh_newkey,'password:',pexpect.EOF])
if i==1:
p.sendline("word")
i=p.expect('service@main-:')
p.sendline("cd /opt/ad/bin")
i=p.expect('service@main-:')
p.sendline('[ -f email_tidyup.sh ] && echo "File exists" || echo "File does not exists"')
i=p.expect('File Exists')
i=p.expect('service@main-:')
assert True
elif i==2:
print "I either got key or connection timeout"
assert False

results = p.before # print out the result

VersionID()

感谢您的帮助。

最佳答案

为什么不利用命令的返回码通过 SSH 传回这一事实呢?

$ ssh victory 'test -f .bash_history'
$ echo $?
0
$ ssh victory 'test -f .csh_history'
$ echo $?
1
$ ssh hostdoesntexist 'test -f .csh_history'
ssh: Could not resolve hostname hostdoesntexist: Name or service not known
$ echo $?
255

这样,您可以只检查返回码,而无需捕获输出。

关于python - 通过 ssh 验证文件是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2192442/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com