2025-03-14 21:59:59 -06:00
|
|
|
|
# unset
|
|
|
|
|
|
|
|
|
|
|
|
> 删除 Shell 变量或函数。
|
2025-12-16 10:20:31 -07:00
|
|
|
|
> 更多信息:<https://www.gnu.org/software/bash/manual/bash.html#index-unset>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
|
|
- 删除变量 `foo`,如果该变量不存在则删除函数 `foo`:
|
|
|
|
|
|
|
|
|
|
|
|
`unset {{foo}}`
|
|
|
|
|
|
|
|
|
|
|
|
- 删除变量 foo 和 bar:
|
|
|
|
|
|
|
|
|
|
|
|
`unset -v {{foo}} {{bar}}`
|
|
|
|
|
|
|
|
|
|
|
|
- 删除函数 my_func:
|
|
|
|
|
|
|
|
|
|
|
|
`unset -f {{my_func}}`
|