Pass Python variable inside command with Paramiko

為{幸葍}努か 提交于 2019-12-06 16:44:29

Your question has nothing to do with Paramiko.

It's just a trivial concatenation of strings in Python:

ssh.exec_command(
     '/bin/su root -c "smartctl -a /dev/' + DISK + ' > /tmp/' + DISK + '"',
     get_pty=True)

For even better options, see How to insert string into a string as a variable?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!