Return a successful exit status.
true
Always returns a successful status; the return value is 0.
# When your script is set to 'set -e', any command returning failure will cause the script to exit.
set -e
# How to temporarily skip this? The following statement uses the logical OR operator with true, ensuring the return value is always true.
some_command || true
# Similarly to 'pass' in Python, it can also be used as a placeholder in conditional statements.
help command for related help information.