cmd.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Wed, 24 Jun 2009 21:20:09 +0300
changeset 133 273697a58117
parent 99 0fa8ff78a008
child 215 44ae18f7c0aa
permissions -rw-r--r--
Automated merge with file:///srv/hg/admin-doc

-*- outline -*-

* CMD tricks.

  $ set /p TOOLOUTPUT= < temp.txt

  $ for /f "tokens=*" %%i in ('%~dp0sometool.exe') do set TOOLOUTPUT=%%i

  $ for /f "tokens=1 delims=" %%s in (users.txt) do (echo %%S & command "%%S") >> outputfile.txt