1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
This commit is contained in:
Managor 2025-03-28 18:24:03 +00:00 committed by GitHub
commit 73efd6f716
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 101 additions and 0 deletions

7
pages/common/].md Normal file
View file

@ -0,0 +1,7 @@
# ]
> This shell keyword is used to close out `[`.
- View documentation for the `[` keyword:
`tldr [`

7
pages/common/]].md Normal file
View file

@ -0,0 +1,7 @@
# ]]
> This shell keyword is used to close out `[[`.
- View documentation for the `[[` keyword:
`tldr [[`

19
pages/common/do.md Normal file
View file

@ -0,0 +1,19 @@
# do
> This shell keyword is used with `for`, `while`, `select`, and `until` to mark the start of a loop.
- View documentation for the `for` keyword:
`tldr for`
- View documentation for the `while` keyword:
`tldr while`
- View documentation for the `select` keyword:
`tldr select`
- View documentation for the `until` keyword:
`tldr until`

19
pages/common/done.md Normal file
View file

@ -0,0 +1,19 @@
# done
> This shell keyword is used with `for`, `while`, `select`, and `until` to mark the end of a loop.
- View documentation for the `for` keyword:
`tldr for`
- View documentation for the `while` keyword:
`tldr while`
- View documentation for the `select` keyword:
`tldr select`
- View documentation for the `until` keyword:
`tldr until`

7
pages/common/elif.md Normal file
View file

@ -0,0 +1,7 @@
# elif
> This shell keyword is used in combination with `if` and `else` to define a code branch.
- View documentation for `if` command:
`tldr if`

7
pages/common/else.md Normal file
View file

@ -0,0 +1,7 @@
# else
> This shell keyword is used in combination with `if` and `elif` to define a code branch if no other branch was valid.
- View documentation for the `if` keyword:
`tldr if`

7
pages/common/esac.md Normal file
View file

@ -0,0 +1,7 @@
# esac
> This shell keyword is used to end a `case` statement.
- View documentation for the `case` keyword:
`tldr case`

7
pages/common/fi.md Normal file
View file

@ -0,0 +1,7 @@
# fi
> This shell keyword is used to end an `if` statement.
- View documentation for the `if` keyword:
`tldr if`

7
pages/common/in.md Normal file
View file

@ -0,0 +1,7 @@
# in
> This shell keyword is used with `for` to separate the iterator and items to iterate.
- View documentation for the `for` keyword:
`tldr for`

7
pages/common/then.md Normal file
View file

@ -0,0 +1,7 @@
# then
> This shell keyword is used in combination with `if` and `elif` to separate branches and branch conditions.
- View documentation for `if` command:
`tldr if`

7
pages/common/}.md Normal file
View file

@ -0,0 +1,7 @@
# }
> This shell keyword is used to close out `{`.
- View documentation for the `{` keyword:
`tldr {`