“Funx Function return” Ответ

Funx Function return

function myfunc()
{
    local  result=$1
    local  myresult='some value'
    eval $result="'$myresult'"
}

myfunc result
echo $result
DreamCoder

Funx Function return

function myfunc()
{
    local  myresult='some value'
    echo "$myresult"
}

result=$(myfunc)   # or result=`myfunc`
echo $result
DreamCoder

Ответы похожие на “Funx Function return”

Вопросы похожие на “Funx Function return”

Больше похожих ответов на “Funx Function return” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования