mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-28 23:44:54 +02:00
11 lines
166 B
Markdown
11 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}}`
|