Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test, [: add page, improve examples #5205

Merged
merged 4 commits into from
Mar 10, 2021
Merged
Show file tree
Hide file tree
Changes from 3 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
25 changes: 25 additions & 0 deletions pages/common/[.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# test
bl-ue marked this conversation as resolved.
Show resolved Hide resolved

> Evaluate condition.
> Returns 0 if the condition evaluates to true, 1 if it evaluates to false.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/test-invocation.html>.

- Test if a given variable is equal to a given string:

`[ "{{$MY_VAR}}" == "{{/bin/zsh}}" ]`

- Test if a given variable is empty:

`[ -z "{{$GIT_BRANCH}}" ]`

- Test if a file exists:

`[ -f "{{path/to/file_or_directory}}" ]`

- Test if a directory does not exist:

`[ ! -d "{{path/to/directory}}" ]`

- If-else statement:

`[ {{condition}} ] && {{echo "true"}} || {{echo "false"}}`
21 changes: 11 additions & 10 deletions pages/common/test.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
# test

> Evaluate condition.
> If it is true, returns 0 exit status, otherwise returns 1.
> Returns 0 if the condition evaluates to true, 1 if it evaluates to false.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/test-invocation.html>.

- Test if given variable is equal to given string:
- Test if a given variable is equal to a given string:

`test $MY_VAR == '/bin/zsh'`
`test "{{$MY_VAR}}" == "{{/bin/zsh}}"`

- Test if given variable is empty:
- Test if a given variable is empty:

`test -z $GIT_BRANCH`
`test -z "{{$GIT_BRANCH}}"`

- Test if file exists:
- Test if a file exists:

`test -e {{filename}}`
`test -f "{{path/to/file_or_directory}}"`

- Test if directory not exists:
- Test if a directory does not exist:

`test ! -d {{path/to/directory}}`
`test ! -d "{{path/to/directory}}"`

- If-else statement:

`test {{condition}} && echo "true" || echo "false"`
`test {{condition}} && {{echo "true"}} || {{echo "false"}}`