Como sobre a variável de shell FUNCNAME? man bash
:
FUNCNAME
An array variable containing the names of all shell functions currently in the execution call stack. The element with index 0 is the name of any currently-executing shell function.
Digamos que eu tenha isto:
foo(){
install_ores_gitflow;
command foo "$@"
}
o que eu quero fazer é dinamicamente pegar o nome da função, algo assim:
foo(){
install_ores_gitflow;
command "$0" "$@"
}
onde "$ 0" seria avaliado como "foo" isso é possível de alguma forma, estou procurando algo confiável.
Como sobre a variável de shell FUNCNAME? man bash
:
FUNCNAME
An array variable containing the names of all shell functions currently in the execution call stack. The element with index 0 is the name of any currently-executing shell function.
Tags bash shell shell-script