Possible Duplicate:
How do I iterate over a range of numbers in bash?
I am trying to print "Hello World!" 10 times via the code below, but it is printed only one time. Where am I missing the correct syntax?
RUNS=10
for RUN in {1..$RUNS}
do
echo "Hello World!"
done