Categories
Tags
130 words
1 minutes
Getting Help
Getting Help
Getting Help in Linux
- Once you’re comfortable with the Linux structure and shell, it’s important to know how to get help when using new or unfamiliar commands.
Common Ways to Get Help:
man pages (Manual Pages):
- Shows detailed documentation for most commands.
- Usage: man
- Example: man ls
-help option:
- Displays a quick summary of how to use the command and its options.
- Usage:
—help - Example: ls —help
Why Use These?
- Understand a tool before using it.
- Learn available options/flags.
- Discover new tricks or features of common tools.
First Command:
- ls command
- is used to list the files and directories within the current folder or any specified directory.
ls
- man command
- which displays the manual pages for commands and provides detailed information about their usage.
- man
man ls
Syntax:
—help
ls --help
Syntax:
-h
curl -h
Syntax:
- apropos
- This tool searches the descriptions for instances of a given keyword.
apropos sudo
Getting Help
https://fuwari.vercel.app/posts/getting-help/