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

⟦46e62b2dc⟧ TextFile

    Length: 529 (0x211)
    Types: TextFile
    Notes: UNIX file
    Names: »initial«

Derivation

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

TextFile

#! /bin/sh

erase=`ask erasech "What do you want to use to erase characters?"`
case $erase in
delete)
	ech="^?"
	;;
backspace)
	ech="^H"
	;;
quit)
	exit
	;;
esac

setpar erase $erase

if stty erase "$ech" intr "^C" kill "^U" crt crterase
then
	:
else
	exit 1
fi

echo "
Following are some of the special keys that were set:

    erase char		-  $erase
    erase line		-  control-U
    interrupt		-  control-C

Interrupt is used to kill or interrupt programs.  You can see the full
setting later by giving the command 'stty all'."