Définition de la fonction de show bash

$ 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"
}
Sven