我想在 bash 中执行此操作
#!/bin/bash
func(){
return 1;
}
e=func
echo some text
exit e
但我得到
exit: func: numeric argument required
bash 中的 AFAIK 变量没有类型,如何将其“转换”为 int 以满足要求?
我想在 bash 中执行此操作
#!/bin/bash
func(){
return 1;
}
e=func
echo some text
exit e
但我得到
exit: func: numeric argument required
bash 中的 AFAIK 变量没有类型,如何将其“转换”为 int 以满足要求?