1 | GITSERVER="https://git.gitlab.com/api/v4/projects" |
以上代码想要实现的是:当环境变量GIT_SERVER不为空时,GITSERVER等于$GIT_SERVER,否则GITSERVER=”https://git.gitlab.com/api/v4/projects"
使用三目运算符可由下面一句代替:
1 | GITSERVER=${GIT_SERVER:-"https://git.gitlab.com/api/v4/projects"} |
如果是数字判断,也可以使用下面的方式:1
value=$((value>0?1:2))
1 | $ value=5 |