true, false and : commands

Other topics

Infinite Loop

while true; do
    echo ok
done

or

while :; do
   echo ok
done

or

until false; do
    echo ok
done

Function Return

function positive() {
    return 0
}

function negative() {
    return 1
}

Code that will always/never be executed

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

Syntax:

  • true, : - always return 0 as exit code.
  • false - always returns 1 as exit code.

Contributors

Topic Id: 6655

Example Ids: 22660,22661,22662

This site is not affiliated with any of the contributors.