Bash iteruj nad zmiennym zakresem liczb

#!/bin/bash
START=1
END=5
for i in $(eval echo "{$START..$END}")
do
	echo "$i"
done
Different Dugong