我想在bash中这样做
#!/bin/bash func(){ return 1; } e=func echo some text exit e
但我得到了
exit: func: numeric argument required
bash中的AFAIK变量没有类型,如何将其“转换”为int以满足需求?
您需要在变量前添加$以“取消引用”它.此外,你必须这样做:
原文链接:https://www.f2er.com/bash/384630.htmlfunc e=$? # some commands exit $e
$?包含上次执行的“命令”的返回码
执行e = func将字符串func设置为变量e.