Hello all,
I need some help with a script I have been working on. I was wanting to know if it is possible to add authentication to it for each server it runs across? The credentials are all the same on each server.
This is what I am using so far and it seems to work. I am trying to avoid typing my password each time it trys to grep each server. Not a big deal either way but it would be nice.
I need some help with a script I have been working on. I was wanting to know if it is possible to add authentication to it for each server it runs across? The credentials are all the same on each server.
This is what I am using so far and it seems to work. I am trying to avoid typing my password each time it trys to grep each server. Not a big deal either way but it would be nice.
Code:
#/bin/bash
echo \ "Log Fetcher"
echo \ "ENTER Value"
read text
for server in [ server1 server2 server3 server4 server5 server6 ]; do echo $server; ssh $server cat /var/opt/blah/blah.log | grep $text;done > /home/blah/blah/blah.log