2025-03-14 21:59:59 -06:00
|
|
|
# false
|
|
|
|
|
|
|
|
|
|
> Returns a non-zero exit code.
|
2026-02-18 06:55:01 -07:00
|
|
|
> See also: `true`.
|
|
|
|
|
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-false>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Return a non-zero exit code:
|
|
|
|
|
|
|
|
|
|
`false`
|
2026-02-18 06:55:01 -07:00
|
|
|
|
|
|
|
|
- Make a command always exit with 1:
|
|
|
|
|
|
|
|
|
|
`{{command}} && false`
|