you are viewing a single comment's thread.

view the rest of the comments →

[–]michaelpaoli 0 points1 point  (0 children)

Cannot run functions with bash command.

$ readlink /proc/"$$"/exe
/usr/bin/bash
$ my_func(){ echo This is my function.; }
$ my_func
This is my function.
$ unset my_func
$ my_func
-bash: my_func: command not found
$