
這行批處理代碼中的$代表什么意思for /f skip=1tokens=1* %%i in ('wmic Nic where Manufacturer<>'Microsoft' and NetConnectionStatus='2' get Index^,NetConnectionID^') do (for /f tokens=1* delims=: %%j in (%%j) do (set $%%i=%%j……)……)1、這里的set $%%i=%%j為什么有個$2、我測試了下,好像%%i的值也沒有改變,這里set $%%i=%%j的意義是什么

