Windows 环境变量

Windows 环境变量(Environment Variables)

引用

在 cmd.exe 中

在 git-bash 中

Path

在 CMD 中使用外部命令时,Path 指定在哪里查找命令,PATHEXT 指定查找哪些扩展名,找到了即停止查找。

Path 的值为 System Path 和 User Path 的合集。注意 System Path 在前 User Path 在后,即先搜索 System Path 再搜索 User Path。

与 Linux shell 不一样,cmd

> script.bat

会在 Path 中搜索 script.bat,而不是先从当前目录中搜索,,因此通常指定路径

> .\script.bat

编辑

Win10, 在 Cortana 中输入 env,

推荐用 RapidEE 编辑环境变量。

参考