1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-25 08:35:42 +02:00

chore(topic): add help example (#8514)

* Update command-help.md

Feat: Adding the --help flag explanation

* Update src/data/roadmaps/linux/content/shell-basics/command-help.md

* Update command-help.md

---------

Co-authored-by: Arik Chakma <arikchangma@gmail.com>
This commit is contained in:
Bryan Wilches
2025-04-20 03:02:23 -05:00
committed by GitHub
parent 08d0301181
commit a822f00a70

View File

@@ -14,6 +14,12 @@ For built-in shell functions, use:
help [command] 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: To view examples with TLDR, use:
```bash ```bash
@@ -24,4 +30,4 @@ Learn more from the following resources:
- [@article@How to use the man page](https://www.baeldung.com/linux/man-command) - [@article@How to use the man page](https://www.baeldung.com/linux/man-command)
- [@opensource@tldr-pages/tldr](https://github.com/tldr-pages/tldr) - [@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)