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

323 B

unset

셸 변수 또는 함수를 제거. 더 많은 정보: https://manned.org/unset.

  • 변수 foo를 제거하거나, 변수가 존재하지 않을 경우 함수 foo를 제거:

unset {{foo}}

  • 변수 foobar 제거:

unset -v {{foo}} {{bar}}

  • 함수 my_func 제거:

unset -f {{my_func}}