Artifact 408bb45747ae97bfcf756fc263b5955aaacaff81b1fe4e615570d6882a460244:
- Executable file mtt/bin/trans/n2m — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 578) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/mtt/bin/trans/n2m — part of check-in [c2e3fed278] at 2000-10-10 07:25:46 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 578) [annotate] [blame] [check-ins using]
#!/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