Linux字符模式下如何设置/删除环境变量

Linux字符模式下设置/删除环境变量方法:

  bash下

  设置:export 变量名=变量值

  删除:unset 变量名

  csh下

  设置:setenv 变量名 变量值

  删除:unsetenv 变量名

http://darrenzhu.iteye.com/blog/2108302

http://blog.csdn.net/witsmakemen/article/details/7831631

原文地址:https://www.cnblogs.com/cj2014/p/4551894.html