#!/bin/bash for i in {0..100}; do echo "hello" sleep 5s done
#!/bin/bash START=1 END=5 for i in $(eval echo "{$START..$END}") do echo "$i" done