2015-12-12 22:08:54 +00:00
|
|
|
# test
|
|
|
|
|
2021-11-07 00:57:43 +00:00
|
|
|
> Check file types and compare values.
|
2021-03-10 19:24:11 +00:00
|
|
|
> 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>.
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2021-03-10 19:24:11 +00:00
|
|
|
- Test if a given variable is equal to a given string:
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2021-03-10 19:24:11 +00:00
|
|
|
`test "{{$MY_VAR}}" == "{{/bin/zsh}}"`
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2021-03-10 19:24:11 +00:00
|
|
|
- Test if a given variable is empty:
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2021-03-10 19:24:11 +00:00
|
|
|
`test -z "{{$GIT_BRANCH}}"`
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2021-03-10 19:24:11 +00:00
|
|
|
- Test if a file exists:
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2021-03-10 19:24:11 +00:00
|
|
|
`test -f "{{path/to/file_or_directory}}"`
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2021-03-10 19:24:11 +00:00
|
|
|
- Test if a directory does not exist:
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2021-03-10 19:24:11 +00:00
|
|
|
`test ! -d "{{path/to/directory}}"`
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- If-else statement:
|
2015-12-12 22:08:54 +00:00
|
|
|
|
2021-03-10 19:24:11 +00:00
|
|
|
`test {{condition}} && {{echo "true"}} || {{echo "false"}}`
|