This website requires JavaScript.
Explore
Help
Sign In
ctome
/
tldr
mirror of
https://github.com/CrimsonTome/tldr.git
Watch
1
Star
0
Fork
You've already forked tldr
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
2c110be2e0
tldr
/
pages
/
linux
/
unset.md
166 B
Raw
Blame
History
unset
Remove shell variables or functions.
Remove the variables foo and bar:
unset {{foo}} {{bar}}
Remove the function my_func:
unset -f {{my_func}}