|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 946 (0x3b2) Types: TextFile Names: »make_all_mf«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« └─⟦036c765ac⟧ └─⟦this⟧ »TeX3.0/TeXcontrib/sauter/make_all_mf« └─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./tex82/TeXcontrib/sauter/make_all_mf« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« └─⟦c58930e5c⟧ └─⟦this⟧ »TeX3.14/TeXcontrib/sauter/make_all_mf«
#! /bin/csh -f # Generate the mf-file-making commands for each family. # Make sure we haven't already been run. set output_file = make_mf_files if (-e $output_file) then echo "Sorry, $output_file already exists." exit(1) else echo '#! /bin/csh -f' > $output_file endif # You may want to edit this list for particular runs. Some # of these families aren't too useful. For example: # set families = (bx mi r sl ss sy ti tt) set families = (b bsy bx bxsl bxti csc dunh ex ff fi fib \ inch itt mi mib r sl sltt ss ssbx ssdc ssi ssq ssqi sy tcsc \ tex ti tt u vtt) # Now ask for the sizes. foreach fam ($families) echo -n "Point sizes for cm$fam? " set sizes = $< # And write out the commands. If the name of # mf-file-making command changes, change it here. if ($sizes != '') then echo "make_mf cm$fam $sizes" >> $output_file endif end # Make it executable. chmod ogu+x $output_file echo "$output_file created."