This website requires JavaScript.
Explore
Help
Register
Sign in
lilith
/
tldr
Watch
1
Star
0
Fork
You've already forked tldr
0
mirror of
https://github.com/tldr-pages/tldr.git
synced
2025-04-29 23:24:55 +02:00
Code
Activity
152ee9b622
Branches
Tags
No results found.
tldr
/
pages
/
linux
/
unset.md
jn64
222bc41873
unset: clarify example with no options (
#4126
)
2020-07-05 21:50:40 +01:00
277 B
Raw
Blame
History
unset
Remove shell variables or functions.
Remove the variable
foo
, or if the variable doesn't exist, remove the function
foo
:
unset {{foo}}
Remove the variables foo and bar:
unset -v {{foo}} {{bar}}
Remove the function my_func:
unset -f {{my_func}}