批处理

  • 将一个命令的返回结果传给一个变量
@echo off
for /f "delims=" %%i in ('where Java') do set a=%%i
echo %a%
pause

你可能感兴趣的:(批处理)