How to get a file Variables in Batch-File
问题 Let's imagine a Batch game saves your progress in a file.bat file, when we edit that file we got : set Health=100 set Sword=Gold i used this command in a Batch file but it's didn't work : for /f "eol=- delims=" %%a in (file.bat) do set "%%a" echo Your health is %Health% echo Your sword is made of %Sword% it leave it blank. but if i maked a file like the above but removed the set (only Health=100 and Sword=Gold without set), it works and give me the variable Health and Sword, but when the set