#!/bin/bash ping -c1 10.1.1.25 > /dev/null if [ $? -eq 0 ] then echo ok exit 0 else echo “fail” fi