Overview
Comment: | Handle free version of reduce. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e244a8d2a86fa5680d5545c3193798e0 |
User & Date: | gawthrop@users.sourceforge.net on 2013-08-16 03:05:01 |
Other Links: | branch diff | manifest | tags |
Context
2013-08-21
| ||
05:26:06 | *** empty log message *** check-in: d13259d202 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2013-08-16
| ||
03:05:01 | Handle free version of reduce. check-in: e244a8d2a8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2013-07-22
| ||
03:28:00 | Generate usage comment check-in: 324ec37f95 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt_versions from [a364ee2efb] to [631ca6b658].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.5 2005/02/17 18:36:38 geraint ## Removed a bash-ism: replaced [[ conditional ]] with [ conditional ] ## ## Revision 1.4 2003/08/06 22:39:40 geraint ## Fixed reporting of non-existent software, no longer says "is OK and has version .". ## ## Revision 1.3 2002/04/28 18:41:26 geraint | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.6 2005/02/17 22:15:35 geraint ## Added missing quotes to conditional expression. ## ## Revision 1.5 2005/02/17 18:36:38 geraint ## Removed a bash-ism: replaced [[ conditional ]] with [ conditional ] ## ## Revision 1.4 2003/08/06 22:39:40 geraint ## Fixed reporting of non-existent software, no longer says "is OK and has version .". ## ## Revision 1.3 2002/04/28 18:41:26 geraint |
︙ | ︙ | |||
72 73 74 75 76 77 78 | print_version xfig $version echo Trying fig2dev ... fig2dev -h > mtt_junk; version=`grep -i patchlevel mtt_junk` print_version fig2dev $version echo Trying reduce ... | | | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | print_version xfig $version echo Trying fig2dev ... fig2dev -h > mtt_junk; version=`grep -i patchlevel mtt_junk` print_version fig2dev $version echo Trying reduce ... reduce -w >mtt_junk 2>1 <<EOF bye; EOF version=`grep -i REDUCE mtt_junk` print_version reduce $version |