本帖最后由 依山居 于 2015-10-31 20:40 编辑
[Rapid Environment Editor 官方网站] (http://www.rapidee.com/ )
[Rapid Environment Editor 命令行参数说明(英文)](http://www.rapidee.com/en/command-line )
经过与同类的功能的软件对比,Rapid Environment Editor 是最好用的windows环境变量编辑器,界面上可以一目了然地列出来系统环境变量和用户环境变量。
命令行也很简洁,上官方网站看一下几个子就能记住用法了。
Rapid Environment Editor 简称radpidee,radpidee修改windows环境变量后,会自动刷新环境变量。重启当前程序就生效了,不一定需要重启整个系统。
Command line parameters
Set variable value
rapidee -S [-C] [-E] [-U | -M] variableName newValue
-S
set value
-C
cleanup variable value (remove duplicate paths and empty elements)
-E
if variable doesn't exist then create it as expandable
-U
process user variables (default option)
-M
process system (machine) variables
Command line Result
rapidee -S foo a;b;c;;b foo=a;b;c;;b
rapidee -S -C foo a;b;c;;b foo=a;b;c
Insert value
rapidee -I [-C] [-E] [-U | -M] variableName value
-I
insert value
Command line Result
rapidee -S foo a;b
rapidee -I foo c
foo=c;a;b
Append value
rapidee -A [-C] [-E] [-U | -M] variableName value
-A
append value
Command line Result
rapidee -S foo a;b
rapidee -A foo c
foo=a;b;c
Remove value
rapidee -R [-C] [-U | -M] variableName value
-R
remove value
Command line Result
rapidee -S foo a;b;c
rapidee -R foo b
foo=a;c
Delete variable
rapidee -D [-U | -M] variableName
-D
delete variable |