batch file - Variable does not change after changing -


@echo off  if (%1) == () (     echo.anfangskapital eingeben:     set /p anfangskapital =      echo %anfangskapital%  ) else (     set /a anfangskapital = %1 )  pause 

the value of anfangskapital 0. why? how can change value?


Comments

Popular posts from this blog

php - Autoloader issue not returning Class -

javascript - How can I reference jquery library using cgi methods in ruby? -

ruby on rails - Scope conditionals for count? -