如何使用 bash 将带有参数的函数的输出分配给变量?

发布于 2025-01-11 13:47:24 字数 167 浏览 0 评论 0原文

example (){
......
local var
......
return $var 
}

user_val=$(example $number1 $number2) 

我需要 user_val 我会的。我收到错误。当我尝试这种方式时,代码无法检测到该函数。

example (){
......
local var
......
return $var 
}

user_val=$(example $number1 $number2) 

I need user_val and i will it. I got error. Code can't detect the function when I try it this way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

皓月长歌 2025-01-18 13:47:24

@Barmar是正确的。在函数中将 return 替换为 echo。使用 var=$(...) 将函数的输出分配给变量。

使用 return 时,值保存在 $? 中。

@Barmar is correct. Replace return with echo in your function. Using var=$(...) assigns the output of the function to the variable.

When using return the value is saved in $?.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文