Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6e876efa49f65545deaba5cda6f1bf70 |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-10 07:25:46 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-10
| ||
07:44:20 | Initial revision check-in: 4e122324bd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:25:46 | Initial revision check-in: 6e876efa49 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-10-06
| ||
16:20:00 | added ode_write rule check-in: 8279961ca2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/n2m version [408bb45747].
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: n2m # Gives sting of integers from n to m (n<=m) # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### i=`expr $1 - 1` while [ "$i" != "$2" ]; do i=`expr $i + 1` echo $i done |