The batch file code is as follows:
@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
set /a na=%random%%%5+1 & start !na!.txt
Question: why are there four % signs here? I can understand the first two, but not the ones after that!! Can someone explain it?
@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
set /a na=%random%%%5+1 & start !na!.txt
Question: why are there four % signs here? I can understand the first two, but not the ones after that!! Can someone explain it?
