Files
cheatsheet-tldr/tldr/enable
2025-12-17 00:21:28 +00:00

22 lines
382 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# enable
> Enable and disable shell builtins.
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-enable>.
- Print the list of builtins:
`enable`
- Disable a builtin (works in Bash only):
`enable -n {{command}}`
- Re-enable a builtin:
`enable {{command}}`