Files
linux.softwareshinobi.com/landing/docs/.recycle/.recycle2/011-the-help-command.md
Software Shinobi 7d9171c854
All checks were successful
learn org at code.softwareshinobi.com/linux.softwareshinobi.com/pipeline/head This commit looks good
reworking content
2025-06-19 10:03:08 -04:00

825 B

The help command

The help command displays information about builtin commands. Display information about builtin commands.

If a PATTERN is specified, this command gives detailed help on all commands matching the PATTERN, otherwise the list of available help topics is printed.

Syntax

$ help [-dms] [PATTERN ...]

Options

Option Description
-d Output short description for each topic.
-m Display usage in pseudo-manpage format.
-s Output only a short usage synopsis for each topic matching the provided PATTERN.

Examples of uses:

  1. We get the complete information about the cd command
$ help cd
  1. We get a short description about the pwd command
$ help -d pwd
  1. We get the syntax of the cd command
$ help -s cd