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
Index: T i

⟦9c66a3cdc⟧ TextFile

    Length: 538 (0x21a)
    Types: TextFile
    Names: »ini_to_trap«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./tex82/mfdir/ini_to_trap« 

TextFile

#!/bin/sh
# A shell script to perform modifications on the texd.h file for ctex
# to make triptex instead of initex.
#
# To use it, say
#	ini_to_trip orig_texd.h trip_texd.ch
#
ed - $1 <<edscriptend
/undef	TRAP/
s/undef/define/p
/memmax/
s/[0-9][0-9]*/3000/p
/maxinternal/
s/[0-9][0-9]*/100/p
/errorline/
s/[0-9][0-9]*/64/p
/halferrorline/
s/[0-9][0-9]*/32/p
/maxprintline/
s/[0-9][0-9]*/72/p
/screenwidth/
s/[0-9][0-9]*/100/p
/screendepth/
s/[0-9][0-9]*/200/p
/gfbufsize/
s/[0-9][0-9]*/8/p
/memtop/
s/[0-9][0-9]*/3000/p
w $2
edscriptend