在shell脚本中,可以通过使用变量来从函数调用中返回值,而不需要创建子shell。具体的方法有以下几种:
#!/bin/bash
# 定义全局变量
result=""
# 定义函数,将结果赋值给全局变量
function get_result() {
result="Hello, World!"
}
# 调用函数
get_result
# 输出结果
echo $result
#!/bin/bash
# 定义函数,输出结果
function get_result() {
echo "Hello, World!"
}
# 调用函数并将输出赋值给变量
result=$(get_result)
# 输出结果
echo $result
return
语句返回结果,然后在函数调用的地方使用$?
来获取返回值。注意,函数的返回值只能是一个整数,范围为0-255。例如:#!/bin/bash
# 定义函数,返回结果
function get_result() {
local result="Hello, World!"
return 0
}
# 调用函数并获取返回值
get_result
result=$?
# 输出结果
echo $result
以上是在shell脚本中从函数调用中返回值的几种常用方法,根据具体的需求和场景选择合适的方法即可。对于shell脚本的更多用法和技巧,可以参考腾讯云的Shell脚本开发指南:https://cloud.tencent.com/document/product/213/4573
领取专属 10元无门槛券
手把手带您无忧上云