Overview
Comment: | Added mtt_mod to the zapped list |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
91e45392f05bc42283fada8a1be2a005 |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-17 12:33:13 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-17
| ||
12:55:29 | Initial revision check-in: bb46147662 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:33:13 | Added mtt_mod to the zapped list check-in: 91e45392f0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:24:02 | Three argument generic version check-in: 54ad18f103 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_strip_args from [48b8414240] to [bd9c5c4225].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: strip args # Strips unwanted bits from a list of arguments # Label file to symbolic parameters conversion # Copyright (C) 2000 by Peter J. Gawthrop ## $Id$ ## ## $Log$ ## Revision 1.1 2000/10/16 09:04:04 peterg ## Initial revision ## ## # Inform user #echo "Creating $1_sympar.txt" # Separation characters | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: strip args # Strips unwanted bits from a list of arguments # Label file to symbolic parameters conversion # Copyright (C) 2000 by Peter J. Gawthrop ## $Id$ ## ## $Log$ ## Revision 1.2 2000/10/16 09:06:26 peterg ## Write out the system as a second columns as well ## ## Revision 1.1 2000/10/16 09:04:04 peterg ## Initial revision ## ## # Inform user #echo "Creating $1_sympar.txt" # Separation characters |
︙ | ︙ | |||
39 40 41 42 43 44 45 | } } return matched; } BEGIN { not_an_arg = "effort flow state internal external zero unknown\ | | | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | } } return matched; } BEGIN { not_an_arg = "effort flow state internal external zero unknown\ mtt_e mtt_f mtt_mod sqrt exp log sign none abs"; } { args=$1 sys=$2 N=split(args, arg, ","); for (i=1;i<=N;i++){ if ( (length(arg[i])>0)&&(matches(not_an_arg,arg[i])==0)&&(match(arg[i],"^[0-9]+[.]*")==0) ){ |
︙ | ︙ |