Sök…


Syntax

  • true,: - returnera alltid 0 som utgångskod.
  • falsk - returnerar alltid 1 som utgångskod.

Oändlig loop

while true; do
    echo ok
done

eller

while :; do
   echo ok
done

eller

until false; do
    echo ok
done

Funktionsåtergång

function positive() {
    return 0
}

function negative() {
    return 1
}

Kod som alltid / aldrig kommer att köras

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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow