FUNCNAME

suggest change

To get the name of the current function - type:

my_function()
{
    echo "This function is $FUNCNAME"    # This will output "This function is my_function"
}

This instruction will return nothing if you type it outside the function:

my_function

echo "This function is $FUNCNAME"    # This will output "This function is"

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents