vote up 2 vote down star

When I try to use an ssh command in a shell script, the command just sits there. Do you have an example of how to use ssh in a shell script?

flag

69% accept rate

6 Answers

vote up 4 vote down check

Depends on what you want to do, and how you use it. If you just want to execute a command remotely and safely on another machine, just use

ssh user@host command

for example

ssh user@host ls

In order to do this safely you need to either ask the user for the password during runtime, or set up keys on the remote host.

link|flag
+1 for completeness, simplicity, and conciseness ... with an example to boot! – Adam Liss Nov 3 '08 at 12:21
vote up 2 vote down

First, you need to make sure you've set up password-less (public key login). There are at least two flavors of ssh with slightly different configuration file formats. Check the ssh manpage on your system, consult you local sysadmin or head over to http://beta.stackoverflow.com/questions/7260/how-do-i-setup-public-key-authentication.

To run ssh in batch mode (such as within a shell script), you need to pass a command you want to be run. The syntax is:

ssh host command

If you want to run more than one command at the same time, use quotes and semicolons:

ssh host "command1; command2"

The quotes are needed to protect the semicolons from the shell interpreter. If you left them out, only the first command would be run remotely and all the rest would be run on the local machine.

link|flag
vote up 0 vote down

You need to put your SSH public key into the ~/.ssh/authorized_keys file on the remote host. Then you'll be able to SSH to that host password-less.

Alternatively you can use ssh-agent. I would recommend against storing the password in the script.

link|flag
vote up -1 vote down

You can use expect command to populate the username/password info

link|flag
vote up -1 vote down

What do you want to use it for? If possible, replace it by a more specific tool that is built in top of SSH, e.g. for file transfer invoke scp or rsync instead …

link|flag
vote up -1 vote down

The easiest way is using a certificate for the user that runs the script.

A more complex one implies adding to stdin the password when the shell command asks for it. Expect, perl libraries, show to the user the prompt asking the password (if is interactive, at least), there are a lot of choices.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.