#!/bin/sh
#---------------------------------------------------------------------------
# /usr/bin/seq   OPT_TIMELOG       v.0.7
#
# Creation:     04.01.2005  Enrico Troeger <troeger@fh-coburg.de>
# Last Update:  04.01.2005  Enrico Troeger <troeger@fh-coburg.de>
#---------------------------------------------------------------------------


if [ "$1" -a "$2" ]
then
    i="$1"
    while [ "$i" -le "$2" ]
    do
        echo "$i"
        i=`expr $i + 1`
    done
fi
