cmd.rst
changeset 99 0fa8ff78a008
child 215 44ae18f7c0aa
equal deleted inserted replaced
98:fc020f519c58 99:0fa8ff78a008
       
     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