cmd.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Mon, 28 Sep 2009 23:29:43 +0300
changeset 203 2add7756edd3
parent 99 0fa8ff78a008
child 215 44ae18f7c0aa
permissions -rw-r--r--
Compration of FOSS licences.

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