Re: Aufgaben und Übungen,

#!/bin/bash

i=0

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