SQLITE_NOTICE(283): recovered 5 frames from WAL file /data/mtt.fossil-wal
File mttroot/mtt/bin/trans/doc2ps artifact d08f5c88d0 part of check-in c1544d4698
#! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: doc2dvi # Converts doc file to dvi file # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 1999/11/02 07:56:46 peterg ## Removed documenttype in blurb ## ## Revision 1.3 1998/11/24 12:03:27 peterg ## Indexing of book docs. ## ## Revision 1.2 1998/04/15 18:40:43 peterg ## Run LateX three times ## ## Revision 1.1 1998/03/03 08:35:50 peterg ## Initial revision ## ############################################################### system=$1 documenttype=$2 # Inform user echo "Creating $system.ps" doc2dvi $system $documenttype dvips -o $system.ps $1 # Make sure transformation succeeeds exit 0