Overview
| Comment: | *** empty log message *** |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
6621d634a1a283f22510bfe477547a88 |
| User & Date: | gawthrop@users.sourceforge.net on 1999-10-19 00:34:10.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1999-10-19
| ||
| 02:01:22 | Initial revision check-in: f5ee792cac user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 00:34:10 | *** empty log message *** check-in: 6621d634a1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 00:05:44 | Now defaults junction ports when only one specified (for vector junctions) check-in: 3168d5f598 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/xmtt
from [60f22c6f18]
to [e00539b97d].
| ︙ | ︙ | |||
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 |
# Copyright (c) P.J.Gawthrop, 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 1999/03/09 00:03:55 peterg
## Major revisions for release 3.5
##
## Revision 1.1 1998/10/20 08:15:17 peterg
## Initial revision
##
###############################################################
#Look for a command line argument
while [ -n "`echo $1 | grep '^-'`" ]; do
case $1 in
-update ) echo Creating representation list for mtt;
mtt2reps_txt> $MTTPATH/REPS;
echo Creating examples list for mtt;
mtt -q help examples> $MTTPATH/EXAMPLES;;
-example ) examples='examples';;
*)
echo "$1 is an invalid argument - ignoring" ;;
| > > > > > > | 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 |
# Copyright (c) P.J.Gawthrop, 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 1999/08/18 06:17:55 peterg
## Modular form
##
## Revision 1.2 1999/03/09 00:03:55 peterg
## Major revisions for release 3.5
##
## Revision 1.1 1998/10/20 08:15:17 peterg
## Initial revision
##
###############################################################
#Look for a command line argument
while [ -n "`echo $1 | grep '^-'`" ]; do
case $1 in
--help ) echo xmtt
echo xmtt -update
exit;;
-update ) echo Creating representation list for mtt;
mtt2reps_txt> $MTTPATH/REPS;
echo Creating examples list for mtt;
mtt -q help examples> $MTTPATH/EXAMPLES;;
-example ) examples='examples';;
*)
echo "$1 is an invalid argument - ignoring" ;;
|
| ︙ | ︙ |