在 bash 中,您可以使用type
来显示函数的主体,如
bash-4.3$ myfunc() { echo $@ ;}
bash-4.3$ type myfunc
myfunc is a function
myfunc ()
{
echo $@
}
如何在 Ash and Dash 中显示 shell 函数体?
在 bash 中,您可以使用type
来显示函数的主体,如
bash-4.3$ myfunc() { echo $@ ;}
bash-4.3$ type myfunc
myfunc is a function
myfunc ()
{
echo $@
}
如何在 Ash and Dash 中显示 shell 函数体?