mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 10:41:54 +00:00
18 lines
338 B
Plaintext
18 lines
338 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}}`
|