#!/bin/bash # https://www.davidvajda.de/viewtopic.php?p=1672#p1672 i=0 while [ $i -lt 10 ] do echo "Hallo zum $(($i+1))." i=$(($i+1)) done