equal
deleted
inserted
replaced
|
1 -*- outline -*- |
|
2 |
|
3 * CMD tricks. |
|
4 |
|
5 $ set /p TOOLOUTPUT= < temp.txt |
|
6 |
|
7 $ for /f "tokens=*" %%i in ('%~dp0sometool.exe') do set TOOLOUTPUT=%%i |
|
8 |
|
9 $ for /f "tokens=1 delims=" %%s in (users.txt) do (echo %%S & command "%%S") >> outputfile.txt |