DataMuseum.dk

Presents historical artifacts from the history of:

ICL Comet 32

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

See our Wiki for more about ICL Comet 32

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦91e39f6fb⟧ TextFile

    Length: 364 (0x16c)
    Types: TextFile
    Notes: UNIX file
    Names: »vmsymb«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »sys/build/vmsymb« 

TextFile

#! /bin/csh -f

while (1)
	set name = `ask unixname "What was the name of the unix you booted?"`
	if ($name == quit) exit(1)
	uvers /"$name" > /dev/null
	if ($status) then
		echo "Not likely - try again"
		continue
	endif
	echo ""
	echo "Executing: newsym /$name"
	newsym /"$name"
	if ($status) then
		echo "Error - try again or quit"
		continue
	endif
	break
end