I currently have a script where I ssh to two hosts and grep out values and report them back to an array and print them out on a screen.

However, I am having to put in my password 60 times over 30 hosts. Can I ssh to a host once, run my for loops greps, and assign as an array to print out?

My current script does something like this

for (( i=0; i<$end; i++ )); 
do 
peerhostarrayTemp=`ssh hostname1 /home/dummy/bin/stat /dev/neato/smdedshared.$i | grep width | awk -F " " '{print $6}'`     
peerhostarray[$i]=$peerhostarrayTemp    
echo "got ${peerhostarray[$i]}" 
done
link|improve this question
For passwordless logins: Is SSH public key auth acceptable? (works on any OpenSSH server in default config, regardless of distro; requires a bit of one-time setup) help.ubuntu.com/community/SSH/OpenSSH/Keys Also, what is the end purpose? There may be an easier way to do it... – Piskvor Feb 21 at 0:20
The end purpose is to ssh to two host, grep values and store them in an array and print them out in an output like this – Wilson Lam Feb 21 at 1:23
seqnum HOSTA HOSTB ------------------------------- 0 8282 82838 1 8323 83838 – Wilson Lam Feb 21 at 1:24
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.