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

⟦d6f2a26bf⟧ TextFile

    Length: 364 (0x16c)
    Types: TextFile
    Notes: UNIX file
    Names: »flop.old«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »usr/local/lib/flop.old« 

TextFile

#! /bin/sh

# this is an example on how to properly use 'fdc'

while :
do
	echo -n "Ready? "
	read something
	case $something in
	y*)
		;;
	n*)
		exit 0
		;;
	*)
		continue
		;;
	esac
	if code=`fdc $*`
	then
		case $code in
		00)
			echo "Done"
			;;
		*)
			fgrep $code /usr/local/lib/floperrs
			;;
		esac
	else
		echo "System error - goodbye"
		exit 1
	fi
done