gpt4 book ai didi

python - 通过 paramiko 加载 .bashrc 的 ssh

转载 作者:太空宇宙 更新时间:2023-11-04 07:37:06 24 4
gpt4 key购买 nike

我想自动执行我通过 ssh (putty) 执行的相同操作。使用腻子连接后,我的 .bashrc 被加载(所以我可以使用别名)。如果我尝试在 Python 中执行此操作,别名 sanity 是不可见的:

sanity: command not found

使用 source .bashrc 不是解决方案。

 ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect('xxxxxxx', username='x', password='x', key_filename=None, look_for_keys=False)
stdin, stdout, stderr = ssh.exec_command(
"""
sanity;
""")

stdout.flush()
for line in stdout:
print line
print "END"

print stderr.read()
ssh.close()

最佳答案

因为您正在通过 ssh 运行命令,所以您没有运行登录 shell,所以 .bashrc 不是源代码。

在这里查看答案:https://superuser.com/questions/306530/run-remote-ssh-command-with-full-login-shell

编辑:

尝试在调用 exec_command 时设置 get_pty=True

否则尝试强制登录 shell

exec_command('bash -l -c "sanity;"')

关于python - 通过 paramiko 加载 .bashrc 的 ssh,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32139904/

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