|
DataMuseum.dkPresents historical artifacts from the history of: Regnecentalen RC-900 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Regnecentalen RC-900 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 1278 (0x4fe) Types: TextFile Notes: UNIX file Names: »Uutry«
└─⟦50c223e0a⟧ Bits:30004042/network1.imd SW95705I 386/ix Multi-user Release 1.2 └─⟦50c223e0a⟧ UNIX Filesystem └─⟦this⟧ »bn/new/usr/lib/uucp/Uutry«
#!/bin/sh #ident "@(#)uucp:Uutry 2.3" # This shell will start a uucico for the system given. # Options: # -xN the debugging level for uucico (-x5 default) # -r force the removal of the status file # The output is put in /tmp/Name where Name is the name # of the system name. A tail -f is performed after uucico is started. STATUS=/usr/spool/uucp/.Status if [ -x "./uucico" ]; then UUCICO=./uucico else UUCICO=/usr/lib/uucp/uucico fi REMOVE="" X="-x5" SYS= while [ $# -gt 0 ] do case $1 in -x) shift; X="-x$1"; shift;; -x*) X=$1; shift;; -r) REMOVE="y"; shift;; *) SYS="$1"; shift;; esac done if [ -z "$SYS" ] then echo "$0: system name required" exit 1 fi # check for existence in Systems file # only accept match of full name # (important because some names may be prefixes of others!) XX= XX=`uuname | grep "^${SYS}$" ` if [ -z "$XX" ] then echo "Invalid system name \"$SYS\"" exit fi STMP=/tmp/$SYS rm -f $STMP > $STMP chmod 660 $STMP # remove old status file if [ -n "$REMOVE" ]; then rm -f $STATUS/${SYS} fi echo "$UUCICO -r1 -s$SYS $X >$STMP 2>&1&" $UUCICO -r1 -s$SYS $X >$STMP 2>&1& echo "tmp=$STMP" # on heavily loaded systems, may take a moment for uucico # to create debug file. if [ ! -f $STMP ] then sleep 5 fi tail -f $STMP