equal
deleted
inserted
replaced
94 |
94 |
95 $ for /f "tokens=*" %%i in ('%~dp0sometool.exe') do set TOOLOUTPUT=%%i |
95 $ for /f "tokens=*" %%i in ('%~dp0sometool.exe') do set TOOLOUTPUT=%%i |
96 |
96 |
97 $ for /f "tokens=1 delims=" %%s in (users.txt) do (echo %%S & command "%%S") >> outputfile.txt |
97 $ for /f "tokens=1 delims=" %%s in (users.txt) do (echo %%S & command "%%S") >> outputfile.txt |
98 |
98 |
|
99 Resize cmd window. |
|
100 ================== |
|
101 :: |
|
102 |
|
103 cmd# mode CON: COLS=120 LINES=40 |
|
104 |
99 Limits. |
105 Limits. |
100 ======= |
106 ======= |
101 |
107 |
102 Variable value and one line command string after expansion can not exceed 8191 |
108 Variable value and one line command string after expansion can not exceed 8191 |
103 characters for Windows XP and later and 2047 for Windows NT, Windows 2000. |
109 characters for Windows XP and later and 2047 for Windows NT, Windows 2000. |