質問

How to dispaly the function name into the function?

#!/bin/sh
toto()
{
    echo "$something"
}

toto

the above code should display

toto

I m using bash linux from busybox

役に立ちましたか?

解決

You can use $FUNCNAME to do so.

$ toto()
> {
> echo "this function name is $FUNCNAME"
> }
$ toto
this function name is toto
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top