Overview
Comment: | This makes the examples |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bb0af5aca6bb27e8b86ea195cc3611ec |
User & Date: | gawthrop@users.sourceforge.net on 2003-08-17 11:16:34 |
Other Links: | branch diff | manifest | tags |
Context
2003-08-17
| ||
11:35:07 | Fixed problem with parentheses check-in: 8e9839a942 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:16:34 | This makes the examples check-in: bb0af5aca6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:41:53 | Can't get this to work with new MTT check-in: d03d799d72 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/doc/mtt_make_examples version [6d9424bc3d].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #! /bin/sh ## This makes all of the standard examples ## It takes a few hours. ## Copyright (C) 2003 by Peter J. Gawthrop exampledir="$MTT_EXAMPLES" dirname=`basename ${exampledir}` tmpbase="$HOME/JUNK" tmpdir="${tmpbase}/${dirname}" ## Create tmp dir mkdir -pv ${tmpdir} ## Copy to tmp cp -r ${exampledir} ${tmpbase} ## Go to tmp and list DIRS pushd ${tmpdir} dirs=`ls | grep -v CVS` echo Making examples for ${dirs} in ${tmpdir} for dir in ${dirs}; do echo Making examples in $dir mtt -q $dir rep pdf done popd |