LinuxCommandLibrary

help

Display information about Bash builtin commands.

TLDR

Display the full list of builtin commands

$ help
copy


Print instructions on how to use the while loop construct
$ help while
copy


Print instructions on how to use the for loop construct
$ help for
copy


Print instructions on how to use [[ ]] for conditional commands
$ help [[ ]]
copy


Print instruction on how to use (( )) to evaluate arithmetic expressions
$ help \( \)
copy


Print instructions on how to use the cd command
$ help cd
copy

Copied to clipboard