Hello.
Is there a way in bash to call a function by it's name?
For example, I have:
MODULE_NAME='test'
FUNCTION_NAME='execute_run'
How do I call the function with name test_execute_run? I need this to solve the problem of modularizing my bash script.
Thank you.