1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-24 00:02:09 +02:00
tldr/pages/linux/unset.md
2018-12-01 17:55:20 +00:00

166 B

unset

Remove shell variables or functions.

  • Remove the variables foo and bar:

unset {{foo}} {{bar}}

  • Remove the function my_func:

unset -f {{my_func}}