I have declared a value for a variable command as
command =4
stdin, stdout, stderr = ssh.exec_command("pwd; ./test.sh command")
when i try to run the above command it show the output as
I am command
but it should return as
I am 4
Any syntax missing in the above command?
Thanks in advance