mirror of https://github.com/CrimsonTome/tldr.git
12 lines
166 B
Markdown
12 lines
166 B
Markdown
|
# unset
|
||
|
|
||
|
> Remove shell variables or functions.
|
||
|
|
||
|
- Remove the variables foo and bar:
|
||
|
|
||
|
`unset {{foo}} {{bar}}`
|
||
|
|
||
|
- Remove the function my_func:
|
||
|
|
||
|
`unset -f {{my_func}}`
|