Ricerca…


Sintassi

  • true,: - restituisce sempre 0 come codice di uscita.
  • false - restituisce sempre 1 come codice di uscita.

Ciclo infinito

while true; do
    echo ok
done

o

while :; do
   echo ok
done

o

until false; do
    echo ok
done

Funzione di ritorno

function positive() {
    return 0
}

function negative() {
    return 1
}

Codice che verrà sempre / mai eseguito

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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow