1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:42:07 +02:00
tldr/pages/linux/unset.md
2021-07-11 18:17:29 +01:00

325 B

unset

Remove shell variables or functions. More information: https://manned.org/unset.

  • 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}}