Unset
From Linux Shell Scripting Tutorial - A Beginner's handbook
Use unset command to delete the variables during program execution. It can remove both functions and shell variables.
vech=Bus echo $vech unset vech echo $vech