[bash]

#!/bin/bash

i=2000
max=2011
while [ ”$i” -lt ”$max” ]
do
echo ”happy new year $i”
i=`expr $i + 1`
done

[/bash]