Q. How do I use ssh client program in a shell script under UNIX or Linux operating system?
A. SSH client is a program for logging into a remote machine and for executing commands on a remote machine. ssh connects and logs into the specified hostname.The user must prove his/her identity to the remote machine using one of several methods depending on the protocol version used. If command is specified, command is executed on the remote host instead of a login shell.
SSH general syntax
ssh user@hostname command
For example login into remote system called portal.nixcraft.com and find out who logged in, enter:
$ ssh admin@portal.nixcraft.com who
You can use same command in shell script. However, it will prompt for a password. To avoid password prompt you need to ssh keys based login as specified in our article for password less login. Next, you can create a sample shell script as follows:
$ vi sshscript.shType the following shell script lines:
#!/bin/bash # Linux/UNIX box with ssh key based login enabled SERVER="192.168.1.1" # SSH User name USR="admin" OUT="out.txt" ssh $USR@$host w > $OUT
Save and close the file. Type the following command to execute the script:
$ chmod +x sshscript.sh
$ ./sshscript.sh
You can see output of script with cat command:
$ cat out.txt
See more complex example in our shell script directory.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop














{ 8 comments… read them below or add one }
When I try to Authenticate via SSH using a Script , I get
The script is the same :
Pseudo-terminal will not be allocated because stdin
is not a terminal.
I tried using -t and -T switch both on and off.
Suggest if you have any better Ideas
Many Thanks
Sriram
You can try replacing ” ssh $USR@$host w > $OUT” with ” ssh -t -t -l $USR $host w > $OUT”
i want to know whether i can login to a sever using SSH by hardcoding the user name and password in my unix script.
expecting your replay soon.
Yes, you can login to server using SSH by hardcoding
. For this you have to use php.
Php provides expect module to ssh login.
@ krishna kumar
@ Nilesh
PHP isn’t necessary — you can generate public/private keys per user/host you wish to connect to and avoid passwords altogether, allowing you to fully automate your ssh connections.
Google ‘ssh without password’ and you’ll find plenty of tutorials on this process.
I found it necessary to put my commands in double quotes.
ssh $USR@$host “w > “$OUT
Not sure why that wasn’t needed for the above.
Also, do I need to include an “exit” command? Or is the channel closed automatically somehow?
Mike
I want to know by Ssh command by logging to another server I am trying to run a program that contains a special character “$” and it’s giving error ….. Any advice for this
Hey I want to setup my centos machine like whenever any local user connect my pc through ssh the entry is added in any file so can see who used my machine.
So how can i seup this???