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

⟦21bf982bc⟧ TextFile

    Length: 841 (0x349)
    Types: TextFile
    Notes: UNIX file
    Names: »check.uins«

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.uins« 

TextFile


: 'check.uins - check and report currently installed modules

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:   eval check.uins

Returns: echoes environment token setting statements (hence EVAL invocation)
         for: INSTLD   - contiguous list of already installed modules
              UINSTLD  - contiguous list of available, but not yet installed
                         modules

         Module lists are of the module number, and are sorted

Exits:   undefined
'

INSTLD=
UINSTLD=
for n in BASE AOS AGS
do
   i=`map.option $n`
   if test -f .installation/$n/.installed > /dev/null 2>&1
   then
      INSTLD="$INSTLD$i"
   else
      if test -f .installation/$n/install > /dev/null 2>&1
      then
         UINSTLD="$UINSTLD$i"
      fi
   fi
done

echo "INSTLD='$INSTLD' UINSTLD='$UINSTLD'"