首页 > 代码库 > shell--函数返回值

shell--函数返回值

#!/bin/bash

function myfun()
{
    echo "echo result"
    return 0
}


returnValue=$(myfun)

echo "${returnValue}"

这里returnValue得到的并不是0,而是"echo result",想要得到function内的return 值, 要用$?

 

输出:

$ bash -x test.sh
++ myfun
++ echo ‘echo result‘
++ return 0
+ returnValue=http://www.mamicode.com/‘echo result‘
+ echo ‘echo result‘
echo result

 

 

得到返回值,应该像下面这么写

#!/bin/bash

function myfun()
{
    echo "echo result"
    return 0
}


returnValue=$?

echo "${returnValue}"

输出

$ bash -x test.sh
+ returnValue=http://www.mamicode.com/0
+ echo 0
0