Bash

取消設置導出的環境變數

  • September 21, 2022

我正在使用導出來設置環境變數。

export OPCON_VERBOS=${vb}

以後如何取消設置以使其不再被定義?

unset OPCON_VERBOS

或者

OPCON_VERBOS=

或者

OPCON_VERBOS=""

刪除環境變數(unset及其值)。其他人保留環境變數,但刪除它的值。

引用自:https://unix.stackexchange.com/questions/718038