#!/bin/bash #loop going from 1 to 10 for i in {1..10}; do echo "Iteration: $i" done