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

⟦01a1c50b3⟧ TextFile

    Length: 852 (0x354)
    Types: TextFile
    Names: »ini_to_trip«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/tex/ini_to_trip« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c6be2784f⟧ »web2c-5.84b.tar.Z« 
        └─⟦5800b1b62⟧ 
            └─⟦this⟧ »src-5.84b/tex/ini_to_trip« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/tex/ini_to_trip« 

TextFile

#!/bin/sh
# A shell script to perform modifications on the texd.h file
# to make triptex instead of initex.
#
# To use it, say:
# ini_to_trip <original texd.h>
#
# and that file changes into a file with the trip constants.
# 
# The output is in pairs of lines: the first is the definition for
# initex, and the second is the definition for triptex.

cp $1 $1.bak

ed - $1 <<edscriptend
/undef	TRIP/
s/undef/define/p
/memmax/
s/[0-9][0-9]*/2999/p
/bufsize/
s/[0-9][0-9]*/500/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
/maxinopen/
s/[0-9][0-9]*/6/p
/fontmax/
s/[0-9][0-9]*/75/p
/fontmemsize/
s/[0-9][0-9]*/20000/p
/maxstrings/
s/[0-9][0-9]*/3000/p
/stringvacancies/
s/[0-9][0-9]*/8000/p
/poolsize/
s/[0-9][0-9]*/32000/p
/savesize/
s/[0-9][0-9]*/600/p
/memtop/
s/[0-9][0-9]*/2999/p
w
edscriptend