Overview
Comment: | New path for awk script. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ec039e50ba1f4cbad80142427dcda93c |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-30 10:19:11 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-30
| ||
10:30:54 | Switched order of args in matches. check-in: a73ab7c4bc user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:19:11 | New path for awk script. check-in: ec039e50ba user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:07:51 | Removed impicit creation of abg.fig file. check-in: 1767cb5051 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/lbl2sympar_txt2r from [eb46dc4e8c] to [4b23d92900].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.1 1996/08/24 13:34:09 peter # Initial revision # ############################################################### # Inform user echo "Creating $1_sympar.r" rm -f mtt_error # This is the main transformation using gawk tr ';' ',' < $1_lbl.txt | \ | > > > | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## 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 # ############################################################### # Inform user echo "Creating $1_sympar.r" rm -f mtt_error # This is the main transformation using gawk tr ';' ',' < $1_lbl.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 |
Modified mttroot/mtt/bin/trans/rbg_fig2m from [3880d25071] to [242b159dfe].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Inform user echo "Creating $1_rbg.m" echo "Creating $1_cmp.m" echo "Creating $1_fig.fig" rm -f $1_fig.fig # 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 | > > > | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1996/08/05 20:13:33 peter ## Initial revision ## ############################################################### # Inform user echo "Creating $1_rbg.m" echo "Creating $1_cmp.m" echo "Creating $1_fig.fig" rm -f $1_fig.fig # 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/trans/awk/rbg_fig2m.awk $1 rm -f $1_abg.mtt |
Modified mttroot/mtt/bin/trans/tex2doc from [00835c3ce9] to [98af8bc259].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Inform user echo "Creating $1_$2.doc" # This is the main transformation using gawk | > > > | < < < < < < | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## 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/trans/awk/tex2doc.awk $1_$2.txt > $1_$2.doc |