1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 13:53:52 +02:00

unset: add page (#2570)

This commit is contained in:
Ronnie Gane 2018-12-02 06:55:20 +13:00 committed by Starbeamrainbowlabs
parent d379634c57
commit 0ad8632483

11
pages/linux/unset.md Normal file
View file

@ -0,0 +1,11 @@
# unset
> Remove shell variables or functions.
- Remove the variables foo and bar:
`unset {{foo}} {{bar}}`
- Remove the function my_func:
`unset -f {{my_func}}`