什么是测试bash函数返回值的正确方法?

前端之家收集整理的这篇文章主要介绍了什么是测试bash函数返回值的正确方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在if语句中测试一个bash函数返回值,如下所示:
if [[ func arg ]] ; then …

但我得到错误消息如:条件二元运算符。

什么是正确的方法这样做?

是吗:

if [[ $(func arg) ]] ; then ...
如果是退出代码,而不是结果,你可以使用
if func arg; then ...

如果你不能让函数返回一个合适的退出代码(返回N),并且你必须使用字符串结果,使用@Alex Gitelman回答。

$ help if:

if: if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi

Execute commands based on conditional.

The if COMMANDS list is executed. If its exit status is zero,then the
then COMMANDS list is executed. Otherwise,each elif COMMANDS list is
executed in turn,and if its exit status is zero,the corresponding
then COMMANDS list is executed and the if command completes. Otherwise,
the `else COMMANDS’ list is executed,if present. The exit status of the
entire construct is the exit status of the last command executed,or zero
if no condition tested true.

Exit Status: Returns the status of the last command executed.

原文链接:https://www.f2er.com/bash/389229.html

猜你在找的Bash相关文章