Skip to content

interactive shell question #175

Answered by pkittenis
2ctony asked this question in Q&A
Jul 13, 2022 · 1 comments · 1 reply
Discussion options

You must be logged in to vote

Hi there,

See section on interactive shells in documentation of parallel-ssh.

https://parallel-ssh.readthedocs.io/en/latest/advanced.html#running-commands-on-shells

Eg for single clients:

client = SSHClient(<..>)

cmd = 'echo me'
with client.open_shell() as shell:
    shell.run(cmd)
print(list(shell.stdout))
print(shell.exit_code)

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@2ctony
Comment options

Answer selected by pkittenis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants