Zoeken…


Syntaxis

  • true,: - geef altijd 0 terug als exitcode.
  • false - retourneert altijd 1 als exitcode.

Oneindige lus

while true; do
    echo ok
done

of

while :; do
   echo ok
done

of

until false; do
    echo ok
done

Functie terugkeer

function positive() {
    return 0
}

function negative() {
    return 1
}

Code die altijd / nooit wordt uitgevoerd

if true; then
    echo Always executed
fi
if false; then
    echo Never executed
fi


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow