DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

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

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦750176768⟧ TextFile

    Length: 258 (0x102)
    Types: TextFile
    Notes: UNIX file
    Names: »Remove«

Derivation

└─⟦0f0f313e4⟧ Bits:30004764 SW95709I.2F TCP/IP Update 1
└─⟦0f0f313e4⟧ UNIX Filesystem
    └─⟦this⟧ »SSU.4a/install/Remove« 

TextFile

echo "The following files are being removed:"
while read name
do
	if [ -d ${name} ]
	then
		rmdir ${name} 2> /dev/null
		[ $? -eq 0 ] && echo ${name}
	else
		rm -f ${name}
		[ $? -eq 0 ] && echo ${name}
	fi
done < /usr/lib/installed/Files/SSU.4a.name
exit 0