English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Linux enable command

Comprehensive List of Linux Commands

The Linux enable command is used to enable or disable shell built-in instructions.

If the name of the file to be executed is the same as the shell built-in instruction, you can use enable -n to disable the shell built-in instructions. If not added-nParameter, enable can restart disabled instructions.

Syntax

enable [-n][-all][Built-in instructions]

Parameter description:

  • -n  Disable the specified shell built-in instruction.
  • -all  Display all enabled and disabled shell instructions.

Online examples

Display shell built-in commands

# enable //Display shell commands
enable .
enable :
enable [
enable alias
enable bg
enable bind
enable break
enable builtin
enable caller
enable cd
enable command
enable compgen
enable complete
enable compopt
enable continue
enable declare
enable dirs
enable disown
enable echo
enable enable
enable eval
enable exec
enable exit
enable export
enable false
enable fc
enable fg
enable getopts
enable hash
enable help
enable history
enable jobs
enable kill
enable let
enable local
enable logout
enable mapfile
enable popd
enable printf
enable pushd
enable pwd
enable read
enable readarray
enable readonly
enable return
enable set
enable shift
enable shopt
enable source
enable suspend
enable test
enable times
enable trap
enable true
enable type
enable typeset
enable ulimit
enable umask
enable unalias
enable unset
enable wait

Comprehensive List of Linux Commands