#! /bin/sh

[ $# -ne 2 ] && echo $0 start finish && exit
for (( i = $1; i <= $2; ++i ))
do
    echo -n "$i "
done
echo
