Files
tldr/pages.zh/common/[.md
2021-08-18 14:16:03 +02:00

26 lines
522 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# [
> 评估条件。
> 如果条件评估为真返回 0如果评估为假返回 1.
> 更多信息:<https://www.gnu.org/software/coreutils/test>.
- 测试给定变量是否与给定字符串相同:
`[ "{{$VARIABLE}}" == "{{/bin/zsh}}" ]`
- 测试给定变量是否为空值:
`[ -z "{{$GIT_BRANCH}}" ]`
- 测试某个文件是否存在:
`[ -f "{{文件}}" ]`
- 测试某个目录是否存在:
`[ ! -d "{{目录}}" ]`
- If-else 语句:
`[ {{条件语句}} ] && {{echo "true"}} || {{echo "false"}}`