Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/data/roadmaps/linux/content/shell-basics/command-help.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ For built-in shell functions, use:
help [command]
```

Moreover, you can add the *--help* flag to almost any command to get more information about it.
For example:
```bash
date --help
```

To view examples with TLDR, use:

```bash
Expand All @@ -24,4 +30,4 @@ Learn more from the following resources:

- [@article@How to use the man page](https://www.baeldung.com/linux/man-command)
- [@opensource@tldr-pages/tldr](https://github.com/tldr-pages/tldr)
- [@article@Get Help on Linux Commands](https://labex.io/tutorials/linux-get-help-on-linux-commands-18000)
- [@article@Get Help on Linux Commands](https://labex.io/tutorials/linux-get-help-on-linux-commands-18000)