2021-03-10 19:24:11 +00:00
|
|
|
# [
|
|
|
|
|
|
|
|
> Evaluate condition.
|
|
|
|
> Returns 0 if the condition evaluates to true, 1 if it evaluates to false.
|
2021-04-01 16:54:26 +01:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/test>.
|
2021-03-10 19:24:11 +00:00
|
|
|
|
|
|
|
- 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"}}`
|