Overview
Comment: | Corrected regexp notvar |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3fe818cfa45ff21d3c53e9077a6a6c75 |
User & Date: | gawthrop@users.sourceforge.net on 2000-11-03 14:57:06 |
Other Links: | branch diff | manifest | tags |
Context
2000-11-04
| ||
12:32:43 | Added more reps + more default reps check-in: 532401351b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-11-03
| ||
14:57:06 | Corrected regexp notvar check-in: 3fe818cfa4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:53:33 | Copy NOTPAR as well check-in: 5461f1be3d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_make_sympar from [ec19dbb25f] to [c2e092f375].
︙ | ︙ | |||
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.3 2000/10/16 09:41:29 peterg ## Fixed bug with printing a blank line. ## ## Revision 1.2 2000/10/16 09:10:08 peterg ## Now strips out "unwanted" bits frome the _aliased.txt file ## ## Revision 1.1 2000/10/12 19:24:28 peterg | > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 2000/11/02 18:53:46 peterg ## Added NOPAR words to unwanted list. ## ## Revision 1.3 2000/10/16 09:41:29 peterg ## Fixed bug with printing a blank line. ## ## Revision 1.2 2000/10/16 09:10:08 peterg ## Now strips out "unwanted" bits frome the _aliased.txt file ## ## Revision 1.1 2000/10/12 19:24:28 peterg |
︙ | ︙ | |||
38 39 40 41 42 43 44 | # Sort the aliased list mtt_strip_args < $1_aliased.txt | sort -u > mtt_aliased_sort.txt # Create list of unwanted stuff cat mtt_aliased_sort.txt> mtt_unwanted.txt | | | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | # Sort the aliased list mtt_strip_args < $1_aliased.txt | sort -u > mtt_aliased_sort.txt # Create list of unwanted stuff cat mtt_aliased_sort.txt> mtt_unwanted.txt notvar="[%|#]NOT[V|P]AR"; grep $notvar $1_lbl.txt | awk '{printf("%s\t%s\n", $2,sys)'} sys=$1 >>mtt_unwanted.txt sort -u mtt_unwanted.txt > mtt_unwanted_sort.txt # Compare it with the aliased list and show the differences diff mtt_all_sympar.txt mtt_unwanted_sort.txt |\ awk '{if ($1=="<") printf("%s\t%s\n", $2,$3)}' > mtt_sympar.txt |
︙ | ︙ |