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