Say I have this:
foo(){
install_ores_gitflow;
command foo "$@"
}
what I want to do, is dynamically grab the function name, something like this:
foo(){
install_ores_gitflow;
command "$0" "$@"
}
where "$0" would evaluate to "foo" is this possible somehow, I am looking for something reliable.