I was looking at how to unset an exported variable en bash and came accross this.
An answer contains the unset
command. Doing a little unset --help
to check what's available and its description.
$ unset --help
unset: unset [-f] [-v] [-n] [name ...]
Unset values and attributes of shell variables and functions.
For each NAME, remove the corresponding variable or function.
What is a NAME in "For each NAME" ? What is it refering to ?