mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
17 lines
289 B
Markdown
17 lines
289 B
Markdown
# 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}}`
|