Overview
| Comment: | *** empty log message *** |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
c94c0268ff5e3e11749c44f0e6ea4152 |
| User & Date: | gawthrop@users.sourceforge.net on 2000-10-17 09:20:00.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-10-17
| ||
| 09:53:05 | More on logic rep check-in: c96a61b12e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:20:00 | *** empty log message *** check-in: c94c0268ff user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:04:12 | *** empty log message *** check-in: 9f264ac69e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/struc2switch_txt
from [596d30c900]
to [6af1bcdda6].
| ︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1998/07/25 18:50:53 peterg ## Lower case names ## ## Revision 1.2 1997/06/03 15:17:09 peterg ## Changed label to MTT_SWITCH ## # Revision 1.1 1997/05/13 16:58:59 peterg # Initial revision # ############################################################### echo Creating $1_switch.txt rm -f $1_switch.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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 1998/07/26 10:28:30 peterg
## Added a header line to avoid empty file and to trigger
## switch_txt2m to write initial stuff.
##
## Revision 1.3 1998/07/25 18:50:53 peterg
## Lower case names
##
## Revision 1.2 1997/06/03 15:17:09 peterg
## Changed label to MTT_SWITCH
##
# Revision 1.1 1997/05/13 16:58:59 peterg
# Initial revision
#
###############################################################
echo Creating $1_switch.txt
rm -f $1_switch.txt
# This is the main transformation using awk
awk 'BEGIN{
printf("# These are the switches deduced from ISW and CSW components\n");
}
{
if ($1=="state") {i++; if ($3=="MTT_SWITCH") print tolower($4) "\t" i};
}
END{
}
' < $1_struc.txt| sort >> $1_switch.txt
strip_comments < $1_switch.txt | wc -l | awk '{print $1 " switches found"}'
|