DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦de8086ebb⟧ TextFile

    Length: 669 (0x29d)
    Types: TextFile
    Notes: UNIX file
    Names: »check.tic«

Derivation

└─⟦bee8f15db⟧ Bits:30004169/disk2.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦bee8f15db⟧ UNIX Filesystem
    └─⟦this⟧ »up/new/usr/UAP/install.cmds/check.tic« 

TextFile


: 'check.tic - check TIC functions

L..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..T..R

Usage:   check.tic

Assumes: PWD is UAP directory

Exits:   0 - OK
         1 - failed (message will have been displayed)
'

TERMINFO=/tmp/tic.d.$$
rm -fr $TERMINFO
trap "rm -fr $TERMINFO; exit" 2 3
export TERMINFO
mkdir $TERMINFO > /dev/null 2>&1
tic .installation/testTIC.src >/dev/null 2>&1
if test -f $TERMINFO/v/vt100 \
     -a -f $TERMINFO/a/alt2 \
     -a -f $TERMINFO/I/II
   then
   EXIT=0
else
   echo "ERROR: Standard system utility \"tic\" not found,"\
        "or does not operate correctly$BELL"
   EXIT=1
fi
rm -fr $TERMINFO
exit $EXIT