May 2018
Beginner
332 pages
7h 28m
English
If you want to see all the declared functions in the shell environment, then enter the following command:
$ declare -f
If you want to see a particular function, then here is the command:
$ declare -f hello
This should produce the following output:
hello ()
{
echo 'Hello world!'
}