Linux设置/删除环境变量方法

bash下
设置:export 变量名=变量值
删除:unset 变量名
csh下
设置:setenv 变量名 变量值
删除:unsetenv 变量名

原文地址:https://www.cnblogs.com/wangdongpython/p/11037829.html