vote up 8 vote down star
1

I have done this:

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

How do I get rid of it?

flag

65% accept rate

1 Answer

vote up 13 vote down check
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|flag

Your Answer

Get an OpenID
or

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