Overview
Comment: | Strips comments from cmp.txt file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e8cf4b7fe8eaca39663972670245cce5 |
User & Date: | gawthrop@users.sourceforge.net on 2002-12-06 12:26:34 |
Other Links: | branch diff | manifest | tags |
Context
2002-12-06
| ||
12:43:59 | Remove echo ls line check-in: cc169e4c9e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:26:34 | Strips comments from cmp.txt file check-in: e8cf4b7fe8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:47:49 |
Checks levels in fig file to extract genuine components Puts comments at top of cmp.txt file check-in: 41e3234d85 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cmp2sub_txt2sh from [ca5b3c97a3] to [6e0bfe4db6].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 2002/04/28 18:41:26 geraint ## Fixed [ 549658 ] awk should be gawk. ## Replaced calls to awk with call to gawk. ## ## Revision 1.3 2000/10/03 11:34:53 peterg ## Correct $MTT_LIB ## | > > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 2002/12/03 23:26:08 geraint ## Convert _cmp.txt to _sub.sh. ## Slightly edited copy of (obsolete) abg2sub_m2sh. ## ## Revision 1.4 2002/04/28 18:41:26 geraint ## Fixed [ 549658 ] awk should be gawk. ## Replaced calls to awk with call to gawk. ## ## Revision 1.3 2000/10/03 11:34:53 peterg ## Correct $MTT_LIB ## |
︙ | ︙ | |||
40 41 42 43 44 45 46 | echo '# Commands to generate subsystem representations'> $1_sub.sh echo "# File $1_sub.sh" >> $1_sub.sh echo "# Generated by MTT on `date`." >> $1_sub.sh echo >> $1_sub.sh # Get a list of all components for the _abg file | | | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | echo '# Commands to generate subsystem representations'> $1_sub.sh echo "# File $1_sub.sh" >> $1_sub.sh echo "# Generated by MTT on `date`." >> $1_sub.sh echo >> $1_sub.sh # Get a list of all components for the _abg file strip_comments < $1_cmp.txt | gawk -F\: '{print $1}' |\ sort -u > mtt_tmp1 # Remove all components starting with 0 or 1 grep -v '^[01]' < mtt_tmp1 > mtt_tmp4 # Get a list of all standard simple components echo ls $MTT_LIB/comp/simple |
︙ | ︙ |