|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T i
Length: 1464 (0x5b8) Types: TextFile Names: »isode-test«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« └─⟦d3ac74d73⟧ └─⟦this⟧ »isode-5.0/isode-test«
: run this script through /bin/sh # A program to test out the isode services etc. # # Pretty simple minded - but gives some indications. # # Julian Onions <jpo@cs.nott.ac.uk> 15/1/86 # usage : isode-test [ hostname ] error=0 fast=0 imisc=ximisc if [ "x$1" = "x-lpp" ]; then fast=1 imisc=ximisc-lpp shift fi if [ $# -gt 0 ]; then host="$1" echo "Hostname set to $host" elif host="`hostname`"; then echo "Hostname set to $host" elif host="`uname`"; then echo "Hostname set to $host" else echo -n "I give up, what is your host name? " read host fi for i in utctime gentime time users chargen qotd finger pwdgen do echo "$i:" imisc/$imisc "$host" $i || error=`expr $error + 1` done for i in ping sink echo do echo "$i:" imisc/$imisc -c 100 -l 1020 "$host" $i || error=`expr $error + 1` done if [ $fast = 1 ]; then echo "Test done, Errors: $error" exit $error fi for i in echo isode/echo do echo "rosap $i:" support/xisoc "$host" rosap $i < /etc/passwd || error=`expr $error + 1` done for i in echo ros_echo "isode/rtse echo" isode/ros_echo do echo "rtsap $i:" support/xisoc "$host" rtsap "$i" < /etc/passwd || error=`expr $error + 1` done for i in echo isode/echo do echo "psap $i:" support/xisoc "$host" psap $i < /etc/passwd || error=`expr $error + 1` done for i in ssap tsap do echo "$i echo:" support/xisoc "$host" $i echo < /etc/passwd || error=`expr $error + 1` done echo "Test done, Errors: $error" exit $error