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

⟦5ff939b19⟧ TextFile

    Length: 733 (0x2dd)
    Types: TextFile
    Notes: UNIX file
    Names: »termin«

Derivation

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

TextFile

#! /bin/csh -f

set erase = `ask erasech "What do you want to use to erase characters?"`
switch ($erase)
case delete:
	set ech = "^?"
	breaksw
case backspace:
	set ech = "^H"
	breaksw
case quit:
	exit(1)
endsw

stty erase "$ech" intr "^C" kill "^U" susp "^Z" crt crterase
if ($status) exit(1)
echo ""
echo "Following are some of the special keys that were set:"
echo ""
echo "    erase char	-  $erase"
echo "    erase line	-  control-U"
echo "    interrupt	-  control-C"
echo "    suspend	-  control-Z"
echo ""
echo "Interrupts are used to kill programs.  Build does not disable them"
echo "so you can use control-C to kill build.  You can also suspend (stop)"
echo "build with control-Z and restart it with the shell command 'fg'."