Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • 1
    (and you can use [ "$(type -t -- "$func")" = function ] if you want to check that $func is a function first (though it won't tell the difference between functions defined in the file and functions imported from the environment)). Commented Apr 30, 2015 at 15:22
  • @StéphaneChazelas: Good point! Updated my answer. Commented Apr 30, 2015 at 15:28
  • Thanks, upvoted, but I think it would be perfect if you also add echo "function... doesn't exit" in case user enters an invalid parameter like "function3" (or anything else?). Commented Dec 6, 2015 at 15:54