How can I login to a remote server and execute a set of commands then when done logout and continue my script?
Thanks.
|
How can I login to a remote server and execute a set of commands then when done logout and continue my script? Thanks. |
|||||
|
|
ssh can be used to execute a command, rather than start a remote interactive login shell. For example:
Will log into host and execute the You can use this inside a bash script as normal:
From ssh's man page, the exit status will be the exit status of the remove command or 255 if an error occurred. |
|||||||||||||||
|
|
As others have stated, you can use On your system, you run Now, when you do |
|||
|
|
|
Small variation with easier code formatting using
|
|||
|
|