Re: Aufgaben und Übungen,

#!/bin/bash

i=0
while [ \$i -lt 7 ]
do
    echo "Hallo zum \$((\$i+1))."
    i=\$((\$i+1))
done