hi
hab zwar kein seq gefunden aber ein "c-syntax" tuts erstaunlicherweise mit der bash auch (danke google)
(falls mal jemand das gleiche problem hat : )
#!/usr/bin/bash
LIMIT=10
for ((a=1; a <= LIMIT ; a++)) # Double parentheses, and "LIMIT" with no "$".
do
echo -n "$a "
done # A construct borrowed from 'ksh93'.
echo; echo
grüße
tassilo