This website works better with JavaScript
홈
탐색
도움말
가입하기
로그인
david
/
tldr
의 미러
https://github.com/tldr-pages/tldr.git
Watch
1
Star
0
포크
0
파일
이슈
0
위키
트리:
16e4ed5c89
브랜치
태그
kant-patch-1
kant-patch-11
kant-patch-2
kant-patch-3
kant-patch-4
kant-patch-5
kant-patch-6
main
v2.3
v2.2
v2.1
v2.0
v1.5b
v1.5
v1.4
v1.3
v1.2
v1.1
v1.0
tldr
/
pages
/
linux
/
unset.md
unset.md
277 B
히스토리
Raw
unset
Remove shell variables or functions.
Remove the variable
foo
, or if the variable doesn't exist, remove the function
foo
:
unset {{foo}}
Remove the variables foo and bar:
unset -v {{foo}} {{bar}}
Remove the function my_func:
unset -f {{my_func}}