如何在批处理脚本条件中使用环境变量?

时间:2014-04-04 11:13:34

标签: batch-file

我的批处理脚本如下: VERSION是一个环境变量,%1是我的参数。我怎样才能在条件下使用它。

if "%1"=="KBA%VERSION%" (

echo %1

) else (

echo %VERSION%

)

1 个答案:

答案 0 :(得分:0)

你可以像任何其他变量一样使用它......

if /I "C:\windows"=="%windir%"  echo "this is the system dir"