Bash Scripting - Variables
You have a script that sets multiple variables:
You want to unset only variables that start with
var1="one" var2="two" var3="three"
You want to unset only variables that start with
var and end with an odd number (1 or 3). Which command correctly unsets these variables?