1

在 bash 中,您可以使用type来显示函数的主体,如

bash-4.3$ myfunc() { echo $@ ;}
bash-4.3$ type myfunc
myfunc is a function
myfunc () 
{ 
    echo $@
}

如何在 Ash and Dash 中显示 shell 函数体?

4

1 回答 1

0

在诸如破折号之类的 POSIX shell 中是不可能的。

于 2016-08-15T20:39:57.110 回答