File:  [MW Coherent from dump] / coherent / g / usr / lib / uucp / tay104 / contrib / uutry
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:35 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

#!/bin/sh
#
# This script was hacked together by Marc Evans ([email protected])
# I claim no copyright to it and don't really care what people do
# with it, hence, it is public domain. I take no responsibility for
# for happens if you use this script, providing no warentee. This
# section of the comments may be removed if you so desire.
#
# Usage:
#       uutry [-x#] systemname
# where '-x#' has the value [0-9], higher values providing more detail

#
# The following variables should be gropped from the configuration
# files rather then being hard coded here.
#
Spool=/usr/spool/uucp
Lib=/usr/lib/uucp
Status=$Spool/.Status
Debug=$Spool/Debug
Uucico=$lib/uucico
#
# Default option values
#
x="-x5"
s=""

for i in $* ; do
    case $i in
        -x*) x="$i" ;;
        *) s="$i" ;;
    esac
done

if [ $s != "" ]; then
    rm -f $Status/$s
    $Uucico -r1 $x -s$s &
    >$Debug
    tail -f $Debug
else
    echo "Usage: uutry systemname"
    exit 1
fi

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.