Finding Information About a Command

Basic documentation for a command can be read from the shell with the man (manual) command.

$man ls

Many commands also provide a --help option which usually prints the same information.

$ls --help

The output of man is often called the manpage of that command.

Previous
Next