$ type function_name
# or
$ declare -f function_name
# Example - type
$ type cbc
cbc is a function
cbc ()
{
certbot certificates | grep --color=auto -E "^|$1"
}
# Example - declare
$ declare -f cbc
cbc ()
{
certbot certificates | grep --color=auto -E "^|$1"
}