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