unset
unset remove variable
- unset}
$ echo $username
$ username="foo bar"
$ echo $username
foo bar
$ unset username
$ echo $username
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
unset remove variable
$ echo $username
$ username="foo bar"
$ echo $username
foo bar
$ unset username
$ echo $username