首页 > 解决方案 > 当助手说“对于每个名称”时,它指的是什么?

问题描述

我正在研究如何取消设置导出的变量 en bash 并遇到了这个

答案包含unset命令。稍微unset --help检查一下可用的内容及其描述。

$ 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.

“对于每个 NAME”中的 NAME 是什么?它指的是什么?

标签: linuxbash

解决方案


它指的name是语法行中的参数。所以它们是未设置的变量的名称。

它使用大写来突出句子中的单词,类似于手册页使用字体或反色突出关键字的方式。


推荐阅读