I am trying to create an ssh connection and do some things on the remote server from within the script.
However the terminal prompts me for a password, then opens th
If you want to continue to use passwords and not use key exchange then you can accomplish this with 'expect' like so:
#!/usr/bin/expect -f spawn ssh user@hostname expect "password:" sleep 1 send "\r" command1 command2 commandN