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: |
c2e3fed2788029e8213daa2f69f6dcb1 |
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: 03493007d6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:25:46 | Initial revision check-in: c2e3fed278 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-10-06
| ||
16:20:00 | added ode_write rule check-in: 41e60126f2 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 |