unset
TLDR
Unset variable
SYNOPSIS
unset [-f] [-v] name ...
DESCRIPTION
unset removes shell variables. It's a builtin.
Variable removal. Clear from environment.
Function removal. Delete definitions.
Shell scope. Current shell only.
Clean environment. Remove unwanted.
PARAMETERS
-f
Unset function.-v
Unset variable (default).name
Name to unset.
CAVEATS
Shell builtin. Cannot unset readonly. Current session only.
HISTORY
unset is a standard shell builtin command for removing variables and functions from the shell environment.
