-1

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 ?

Itération 122442
  • 2,644
  • 2
  • 27
  • 73

1 Answers1

1

It refers to the name parameters in the syntax line. So they're the names of the variables that are being unset.

It uses uppercase to highlight the word in the sentence, similar to the way man pages use fonts or inverse coloring to highlight keywords.

Barmar
  • 741,623
  • 53
  • 500
  • 612