up vote 16 down vote favorite
2
share [g+] share [fb]

I have done this:

bash $ z() { echo 'hello world'; }

How do I get rid of it?

link|improve this question

64% accept rate
feedback

1 Answer

up vote 25 down vote accepted
unset -f z

Will unset the function named z. A couple people have answered with:

unset z

but if you have a function and a variable named z only the variable will be unset, not the function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.