Overview
| Comment: | Run mtt in quiet mode. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a79937f0e2c51cac8003b2911fc684a5 |
| User & Date: | gawthrop@users.sourceforge.net on 1996-11-01 12:48:21.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1996-11-01
| ||
| 13:22:20 | Initial revision check-in: 1f7423ad4a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 12:48:21 | Run mtt in quiet mode. check-in: a79937f0e2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 12:35:36 | Initial revision check-in: e1c9450fe1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cmp2sub_m2sh
from [3e20629cfa]
to [636b43f116].
| ︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Copyright (c) P.J.Gawthrop 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1996/10/20 19:19:50 peterg ## Initial revision ## ############################################################### #Inform user | > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (c) P.J.Gawthrop 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1996/10/20 19:22:41 peterg ## Cleans up after itself. ## ## Revision 1.1 1996/10/20 19:19:50 peterg ## Initial revision ## ############################################################### #Inform user |
| ︙ | ︙ | |||
36 37 38 39 40 41 42 |
awk '/_cause.m/{split($1,a,"_");print(a[1])}' |\
sed 's/^zero$/0/' |\
sed 's/^one$/1/' |\
sort -u >mtt_tmp2
# Print the non-standard components
comm mtt_tmp1 mtt_tmp2 |\
| | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
awk '/_cause.m/{split($1,a,"_");print(a[1])}' |\
sed 's/^zero$/0/' |\
sed 's/^one$/1/' |\
sort -u >mtt_tmp2
# Print the non-standard components
comm mtt_tmp1 mtt_tmp2 |\
awk 'BEGIN{FS="\t"}{if (length($1)>0) print "mtt -q", $1, "abg m"}' \
>>$1_sub.sh
# Clean up mtt_tmp files
rm -f mtt_tmp1 mtt_tmp2
|