在Ash和Dash中显示函数定义

时间:2016-06-01 17:07:58

标签: shell dash-shell ash

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

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

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

1 个答案:

答案 0 :(得分:0)

在破折号等POSIX shell中不可能。