Linux字符模式下设置/删除环境变量方法:
bash下
设置:export 变量名=变量值
删除:unset 变量名
csh下
设置:setenv 变量名 变量值
删除:unsetenv 变量名
http://darrenzhu.iteye.com/blog/2108302
http://blog.csdn.net/witsmakemen/article/details/7831631
本文共 257 字,大约阅读时间需要 1 分钟。
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