|
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 t
Length: 573 (0x23d) Types: TextFile Names: »tibabb«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« └─⟦036c765ac⟧ └─⟦this⟧ »TeX3.0/TeXcontrib/tib/tibabb« └─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./tex82/TeXcontrib/tib/tibabb« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« └─⟦c58930e5c⟧ └─⟦this⟧ »TeX3.14/TeXcontrib/tib/tibabb«
#! /bin/csh -f # # tibabb -- look up a journal and find the tib abbreviation for it # # Usage: tibabb < keys >... # # Note: this is case sensitive if there is more than one word in the keys # if ($#argv == 1 && "$1" == -usage) then echo " Usage: tibabb < keys > ..." exit 0 endif switch ($#argv) case 0: echo " Usage: tibabb < keys > ..." exit 1 case 1: grep -i -h $1 /usr/lib/tex/tib/mac/*{abb,fll}.ttz|more breaksw default: set arg = `echo $* | sed 's, ,/ \&\& /,g'` awk "/$arg/" /usr/lib/tex/tib/mac/*{abb,fll}.ttz|more endsw