#!/bin/bash
#
# Simple demonstration of the for command with a range
#
for i in {1..9}
do
  echo "iteration ${i}"
done