1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/unset.md

16 lines
323 B
Markdown

# unset
> 셸 변수 또는 함수를 제거.
> 더 많은 정보: <https://manned.org/unset>.
- 변수 `foo`를 제거하거나, 변수가 존재하지 않을 경우 함수 `foo`를 제거:
`unset {{foo}}`
- 변수 `foo``bar` 제거:
`unset -v {{foo}} {{bar}}`
- 함수 `my_func` 제거:
`unset -f {{my_func}}`