0% found this document useful (0 votes)
2 views1 page

Linux Manual Command Guide

The 'man' command is used to display manual pages for Linux commands, with a syntax of 'man [SECTION] command'. It includes various options such as searching for keywords, displaying brief information, and showing all matching man pages. Users can navigate the manual using 'q' to quit and '/' to search within the content.

Uploaded by

ashrufsd035
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Linux Manual Command Guide

The 'man' command is used to display manual pages for Linux commands, with a syntax of 'man [SECTION] command'. It includes various options such as searching for keywords, displaying brief information, and showing all matching man pages. Users can navigate the manual using 'q' to quit and '/' to search within the content.

Uploaded by

ashrufsd035
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

MAN COMMAND NOTES

=================

Purpose:
--------
The 'man' command displays the manual pages for other Linux commands.

Syntax:
-------
man [SECTION] command

Examples:
----------
man ls
man 5 passwd
man -k keyword # Search for a keyword in all man pages
man -f command # Display brief info (same as 'whatis command')
man -a command # Show all man pages matching the name
man --help # Display help for man command

Tips:
-----
Use 'q' to quit the manual view.
Use '/' to search inside the manual.
Sections:
1 - User commands
2 - System calls
3 - Library functions
4 - Special files
5 - File formats
6 - Games
7 - Miscellaneous
8 - System administration

You might also like