I want a bash script that'll do:
for c in computers:
do
ping $c
if ping is sucessfull:
ssh $c 'check something'
done
If I only do ssh
and the computer is iresponsive, it takes forever for the timeout. So I was thinking of using the output of ping
to see if the computer is alive or not. How do I do that? Other ideas will be great also