True - Success Return Utility
Do nothing and return exit code 0 (success). Used in shell scripts for infinite loops, as a placeholder command, or in conditional logic where a successful command is needed.
Usage
true-tool
Common Patterns
while true-tool; do ...; done: Infinite looptrue-tool && echo "always runs"- Placeholder in if/then branches
Examples
true-tool
true-tool && echo "This always executes"