Forrest logo
tool overview
On this page you find all important commands for the CLI tool man. If the command you are looking for is missing please ask our AI.

man

The "man" command line tool is short for "manual," and it is used to display the manual pages for different Unix-like operating systems. These manual pages provide detailed information and documentation about various commands, system calls, library functions, and file formats. The "man" command is typically followed by the name of the command or topic you want to know more about. It displays the manual page for that command/topic, allowing you to read about its purpose, syntax, options, and usage examples. The manual pages are organized into sections, each section containing a specific type of information. The most commonly used sections are 1 (user commands), 2 (system calls), 3 (library functions), and 5 (file formats). Each manual page includes a description, various sections detailing different aspects of the command/topic, and often examples of usage. The "man" command provides a fast and efficient way to access comprehensive documentation, making it an essential tool for users and developers working with Unix-like systems.

List of commands for man:

  • fprind:tldr:62227 fprind: Display the man page for `fprintd`.
    $ man fprintd
    try on your machine
    explain this command
  • if:tldr:57333 if: List all possible conditions (`test` is an alias to `[`; both are commonly used with `if`).
    $ man [
    try on your machine
    explain this command
  • man:tldr:0be67 man: List all available sections for a command.
    $ man -f ${command}
    try on your machine
    explain this command
  • man:tldr:118dd man: Display the man page for a command from section 7.
    $ man ${7} ${command}
    try on your machine
    explain this command
  • man:tldr:4709c man: Display the location of a manpage rather than the manpage itself.
    $ man --where ${command}
    try on your machine
    explain this command
  • man:tldr:546c3 man: Search for manpages containing a search string.
    $ man -k "${search_string}"
    try on your machine
    explain this command
  • man:tldr:63f50 man: List all available sections for a command.
    $ man --whatis ${command}
    try on your machine
    explain this command
  • man:tldr:652fb man: Display the man page using a specific locale.
    $ man ${command} --locale=${locale}
    try on your machine
    explain this command
  • man:tldr:7fc14 man: Display the path searched for manpages.
    $ man --path
    try on your machine
    explain this command
  • man:tldr:9d4da man: Search for manpages containing a search string.
    $ man --apropos "${search_string}"
    try on your machine
    explain this command
  • man:tldr:c9b99 man: Display the location of a manpage rather than the manpage itself.
    $ man -w ${command}
    try on your machine
    explain this command
  • man:tldr:e8db7 man: Display the man page for a command.
    $ man ${command}
    try on your machine
    explain this command
tool overview