Index: mttroot/mtt/bin/trans/lbl2sympar_txt2r ================================================================== --- mttroot/mtt/bin/trans/lbl2sympar_txt2r +++ mttroot/mtt/bin/trans/lbl2sympar_txt2r @@ -13,10 +13,13 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +## Revision 1.2 1996/08/30 10:04:20 peter +## Included `;' in demimiter list. +## # Revision 1.1 1996/08/24 13:34:09 peter # Initial revision # ############################################################### @@ -26,11 +29,11 @@ rm -f mtt_error # This is the main transformation using gawk tr ';' ',' < $1_lbl.txt | \ -gawk -f $MTTPATH/lbl2sympar.awk > $1_sympar.r 2>mtt_error.txt +gawk -f $MTTPATH/trans/awk/lbl2sympar.awk > $1_sympar.r 2>mtt_error.txt # Now invoke the standard error handling. mtt_error mtt_error.txt Index: mttroot/mtt/bin/trans/rbg_fig2m ================================================================== --- mttroot/mtt/bin/trans/rbg_fig2m +++ mttroot/mtt/bin/trans/rbg_fig2m @@ -13,10 +13,13 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +## Revision 1.1 1996/08/05 20:13:33 peter +## Initial revision +## ############################################################### # Inform user echo "Creating $1_rbg.m" @@ -28,13 +31,13 @@ # The following horrible sed thing is to replace tab by ---- # this is because I can't get sed to recognise tabs even if FS=" ". sed 's/ /---- /'<$1_abg.fig > $1_abg.mtt # This is the main transformation using gawk -cat $1_lbl.txt $1_abg.mtt | gawk -f $MTTPATH/rbg_fig2m.awk $1 +cat $1_lbl.txt $1_abg.mtt | gawk -f $MTTPATH/trans/awk/rbg_fig2m.awk $1 rm -f $1_abg.mtt Index: mttroot/mtt/bin/trans/tex2doc ================================================================== --- mttroot/mtt/bin/trans/tex2doc +++ mttroot/mtt/bin/trans/tex2doc @@ -13,19 +13,16 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +## Revision 1.1 1996/08/18 20:00:20 peter +## Initial revision +## ############################################################### # Inform user echo "Creating $1_$2.doc" # This is the main transformation using gawk -gawk -f $MTTPATH/tex2doc.awk $1_$2.txt > $1_$2.doc - - - - - - +gawk -f $MTTPATH/trans/awk/tex2doc.awk $1_$2.txt > $1_$2.doc