Este script hace ping a chocolim.com y te dice cuando tardo. Si en el GeekTool activas Activate Feedback Image te va a decir si tuvo exito. Util para monitorear el estado de un servidor.
HOST=Chocolim.com PING=`ping -q -c 1 $HOST` if [[ $? -eq 0 ]] ; then TIME=`echo $PING |tail -1 | cut -d/ -f 5` echo Chocolim.com: ${TIME}ms exit 0 else echo -n $HOST Chocolim.com exit 2 fi |