author | spiralman <spiralman> | 2002-10-18 21:16:13 (UTC) |
---|---|---|
committer | spiralman <spiralman> | 2002-10-18 21:16:13 (UTC) |
commit | 2ebb8c91374774171582f1a8ee4dbf4009a70615 (patch) (side-by-side diff) | |
tree | df4f8164ddd6acb8e498d780d6d59756c4ce7940 | |
parent | 55a3c031fa5eba00a89ae5efa9b1d791eba9b9e7 (diff) | |
download | opie-2ebb8c91374774171582f1a8ee4dbf4009a70615.zip opie-2ebb8c91374774171582f1a8ee4dbf4009a70615.tar.gz opie-2ebb8c91374774171582f1a8ee4dbf4009a70615.tar.bz2 |
fixed hostlist.sh thanks to wolfgang enderlein, ping command fixed, and can now have comments in hostlist
-rwxr-xr-x | noncore/tools/opie-sh/scripts/hostlist.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/tools/opie-sh/scripts/hostlist.sh b/noncore/tools/opie-sh/scripts/hostlist.sh index 6575e9c..6d70793 100755 --- a/noncore/tools/opie-sh/scripts/hostlist.sh +++ b/noncore/tools/opie-sh/scripts/hostlist.sh @@ -3,49 +3,49 @@ # hostlist.sh - a demonstration of opie-sh # # Copyright (C) 2002 gonz@directbox.com # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # 20020524-1 - icon to hostlist # 20020517-1 - added icon, changed name in launcher # CFG=/opt/QtPalmtop/share/config/hostlist.cfg OPIE_SH=opie-sh hostlist() { ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/hostlist.png>" echo "<h3>Hostlist</h3><br>" - HOSTLIST=`cat $CFG` + HOSTLIST=`cat $CFG | grep -v '#'` for HOST in $HOSTLIST do PT=` ping -c1 $HOST | grep avg|cut -d " " -f4-` if [ "$PT" != "" ] then echo "<b><font color=#00ff00> " echo "$HOST is up<br></font></b>[$PT]<br>" else echo "<b><font color=#ff0000> " echo "$HOST is down<br></font></b>[$PT]<br>" fi done ) | $OPIE_SH -t "Which are up ?" -f } cleanup() { kill $SCREENCLEAN rm -f /tmp/qcop-msg-hostlist.sh } about() { ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/hostlist.png>" echo "<h3>About</h3>" echo "This little App should make it possible for you to " |