cmd.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Mon, 29 Jun 2009 15:52:46 +0300
changeset 138 f4984a7e10bc
parent 99 0fa8ff78a008
child 215 44ae18f7c0aa
permissions -rw-r--r--
About X standart.

-*- 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