DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

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

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦effc6f0e5⟧ TextFile

    Length: 376 (0x178)
    Types: TextFile
    Names: »unmakesubdir.sh«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./DVIware/laser-setters/umd-dvi/misc/unmakesubdir.sh« 

TextFile

#! /bin/sh
#
# unmakesubdir - make the TeX fonts reside in a flat style system
#
# usage:
#	cd /usr/lib/tex/fonts
#	sh unmakesubdir.sh

if [ ! -f SUBDIR ]; then
	echo "$0: SUBDIR file already gone.
Are you sure you need to do this?
(If so, create a SUBDIR file and try again.)" 1>&2
	exit 1
fi

rm SUBDIR

for dir in *; do
	if [ -d $dir ]; then
		mv -i $dir/*.*pxl .
	fi
done