Overview
Comment: | Revisions for xmtt |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2226a03e09f4139d49430fcd6170e26d |
User & Date: | gawthrop@users.sourceforge.net on 1999-03-09 00:03:19 |
Other Links: | branch diff | manifest | tags |
Context
1999-03-09
| ||
00:03:55 | Major revisions for release 3.5 check-in: aef3d41bf9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
00:03:19 | Revisions for xmtt check-in: 2226a03e09 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-03-08
| ||
21:24:43 |
Handles * representations:
rep* is specialcheck-in: 9cb40d6495 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt2reps_txt from [29a1758c0f] to [8b5d8284b3].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | + + + + + + | #! /bin/sh # mtt2reps_txt: Gives a tabular listing of representations and languages # P J Gawthrop July 1998, October 1998 # Copyright (c) P.J.Gawthrop, 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1999/03/08 21:24:43 peterg ## Handles * representations: ## ## rep* is special ## rep shows all possible languages ## ## Revision 1.2 1999/03/08 06:34:07 peterg ## Removed mtt help - replaced by grep #SUMMARY - quicker ## ## Revision 1.1 1998/10/20 08:15:08 peterg ## Initial revision ## ############################################################### |
︙ | |||
27 28 29 30 31 32 33 | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | - + | if (index(rep,"*")==length(rep)){ if ($2==rep) print $NF } else if (($2==rep)||($2==sprintf("%s*",rep))) print $NF }' rep=$rep |\ sort -u | sed 's/[()]//g'` |
Modified mttroot/mtt/bin/trans/reps_txt2tk from [cedff4e4d3] to [48cec506ae].
︙ | |||
9 10 11 12 13 14 15 16 17 | 9 10 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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | + + + + - + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + | # Copyright (c) P.J.Gawthrop, 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1998/10/20 08:13:14 peterg ## Initial revision ## ############################################################### #MTT blurb |