mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 17:42:07 +02:00
323 B
323 B
unset
셸 변수 또는 함수를 제거. 더 많은 정보: https://manned.org/unset.
- 변수
foo
를 제거하거나, 변수가 존재하지 않을 경우 함수foo
를 제거:
unset {{foo}}
- 변수
foo
와bar
제거:
unset -v {{foo}} {{bar}}
- 함수
my_func
제거:
unset -f {{my_func}}