#!/bin/bash
DONE=0
while [ $DONE -eq 0 ]
do
#do something and return something else than 0 when you want to exit this circle
DONE=$?
done
Kategorien
#!/bin/bash
DONE=0
while [ $DONE -eq 0 ]
do
#do something and return something else than 0 when you want to exit this circle
DONE=$?
done