mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
382 B
Plaintext
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}}`
|