Does anyone know of a command that utility or method via the shell that is equivelant to the seq command in Linux? For instance, from the command line I want to run a command 30 times, the seq command allows this in the example below:
man seq:
Thanks.
Ethan
Code:
# for i in `seq 1 30`
> do
> print $i
> done
man seq:
Thanks.
Ethan