C'è un modo per visualizzare la definizione di una funzione bash in bash?
Ad esempio, supponiamo che abbia definito la funzione foobar
function foobar {
echo "I'm foobar"
}
C'è un modo per ottenere in seguito il codice che foobar
viene eseguito?
$ # non-working pseudocode
$ echo $foobar
echo "I'm foobar"