Overview
Comment: | Now puts space after header fields + write _port.fig |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5833aaf844e47185541f93b0f0d97d4a |
User & Date: | gawthrop@users.sourceforge.net on 2001-03-23 14:56:21 |
Other Links: | branch diff | manifest | tags |
Context
2001-03-23
| ||
14:57:31 | Now puts space after header fields + writes _port.fig check-in: 40b1df7cf5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:56:21 | Now puts space after header fields + write _port.fig check-in: 5833aaf844 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:21:29 | Show -pdf oprion in help list check-in: 284cf8cdfc user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/rbg_fig2m from [c3b24f075b] to [a66147cd04].
︙ | ︙ | |||
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 44 45 46 47 48 49 50 51 52 53 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1997/03/19 09:50:24 peterg ## Now creates the sabg (stripped abg) file. ## # Revision 1.2 1996/08/30 10:17:41 peter # New path for awk script. # ## 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" echo "Creating $1_sabg.fig" # Remove some files that I'm going to append to. rm -f $1_fig.fig rm -f $1_head.fig rm -f $1_cmp.fig rm -f $1_bnd.fig # Create blank files touch $1_fig.fig touch $1_head.fig touch $1_cmp.fig touch $1_bnd.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 awk | > > > > > > > > | 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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 2000/09/14 08:41:51 peterg ## *** empty log message *** ## ## Revision 1.3 1997/03/19 09:50:24 peterg ## Now creates the sabg (stripped abg) file. ## # Revision 1.2 1996/08/30 10:17:41 peter # New path for awk script. # ## 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_head.fig" echo "Creating $1_fig.fig" echo "Creating $1_cmp.fig" echo "Creating $1_port.fig" echo "Creating $1_sabg.fig" # Remove some files that I'm going to append to. rm -f $1_fig.fig rm -f $1_head.fig rm -f $1_cmp.fig rm -f $1_port.fig rm -f $1_bnd.fig # Create blank files touch $1_fig.fig touch $1_head.fig touch $1_cmp.fig touch $1_port.fig touch $1_bnd.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 awk |
︙ | ︙ |