Infinite Loop
while true; do
echo ok
done
while :; do
echo ok
done
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