From 0e94a3f802244daa30dce60e20f3d96eca959b8c Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Sun, 30 Jul 2023 08:54:47 +0300 Subject: [PATCH] help: add page (#10547) * help: add page --------- Co-authored-by: K.B.Dharun Krishna --- pages/linux/help.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/help.md diff --git a/pages/linux/help.md b/pages/linux/help.md new file mode 100644 index 000000000..a4fc489c3 --- /dev/null +++ b/pages/linux/help.md @@ -0,0 +1,28 @@ +# help + +> Display information about Bash builtin commands. +> More information: . + +- Display the full list of builtin commands: + +`help` + +- Print instructions on how to use the `while` loop construct: + +`help while` + +- Print instructions on how to use the `for` loop construct: + +`help for` + +- Print instructions on how to use `[[ ]]` for conditional commands: + +`help [[ ]]` + +- Print instruction on how to use `(( ))` to evaluate arithmetic expressions: + +`help \( \)` + +- Print instructions on how to use the `cd` command: + +`help cd`