I have done this:
bash $ z() { echo 'hello world'; }
How do I get rid of it?
|
feedback
|
Will unset the function named z. A couple people have answered with:
but if you have a function and a variable named z only the variable will be unset, not the function. | |||
|
feedback
|