gpt4 book ai didi

windows - 批处理脚本 - 如果尚未设置/定义,则设置/定义环境变量

转载 作者:可可西里 更新时间:2023-11-01 11:24:46 25 4
gpt4 key购买 nike

我需要一个批处理脚本来调用

SetEnvironmentVariableIfNotSet.bat environment_variable_name <value>

来自另一个脚本或命令行。

我绝不是 Windows 批处理脚本方面的专家,但通过反复试验并将不同的东西拼凑在一起,到目前为止我已经想出了这个:

@setlocal EnableDelayedExpansion
@if "!%1!"=="" (
echo '%1' undefined. Defining with value
echo %2
endlocal DisableDelayedExpansion
goto :define_variable
) else (
echo '%1' already defined with value
echo !%1!
endlocal DisableDelayedExpansion
goto :eof
)

:define_variable
@set "%1=%2"

调用时,执行我需要的操作:

C:\>call DefEnvVarIfNotDef.bat ASD "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe"
'ASD' undefined. Defining with value
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe"
C:\>echo %ASD%
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe"

在这里寻求更好/最佳的解决方案。这个在我看来确实很丑。

最佳答案

您可以只使用If DefinedIf Not Defined:

@Echo Off
If "%~1"=="" GoTo :EOF
If Defined %~1 (
Echo='%~1' already defined with value
Call Echo=%%%~1%%
Pause
GoTo :EOF
)
If "%~2"=="" GoTo :EOF
Echo='%~1' undefined, defining with value
Echo=%~2
Set "%~1=%~2"
Pause

关于windows - 批处理脚本 - 如果尚未设置/定义,则设置/定义环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41877666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com