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

⟦f6c60c807⟧ TextFile

    Length: 277 (0x115)
    Types: TextFile
    Notes: UNIX file
    Names: »wrline«

Derivation

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

TextFile

#! /bin/csh -f

set noglob
set cmd = $1
set src = $2
set dst = $3

while (1)
	echo ""
	cat $src
	switch (`ask $cmd "Do you want this in the file?"`)
	case quit:
		exit(1)
	case y:
	case yes:
		cat $src >> $dst
		break
	case p:
	case print:
		continue
	endsw
	break
end
exit(0)