How do I delete an exported environment variable?

后端 未结 5 688
时光取名叫无心
时光取名叫无心 2020-11-29 13:57

Before installing gnuplot, I set the environment variable GNUPLOT_DRIVER_DIR = /home/gnuplot/build/src. During the installation, something went wrong.

I

5条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 14:47

    unset is the command you're looking for.

    unset GNUPLOT_DRIVER_DIR
    

提交回复
热议问题