Got rid of some extraneous crap

This commit is contained in:
Donald Burr 2015-02-19 19:10:03 -08:00
parent c42e6bb0c2
commit c0bcc3d1fa
3 changed files with 0 additions and 4 deletions

View file

@ -1,14 +0,0 @@
#!/bin/bash
if [ -z "$1" ]; then
HOSTS="`grep -v ^# MASTER_LIST | cut -d\| -f3`"
else
HOSTS="`cat \"$1\"`"
fi
for HOST in $HOSTS; do
ping -c 1 -q $HOST >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo -e "\033[1;37m\033[42m UP \033[0m $HOST"
else
echo -e "\033[1;37m\033[41m DOWN \033[0m $HOST"
fi
done