cmd.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sat, 06 Jun 2009 21:05:10 +0300
changeset 129 fc03b0f58a94
parent 99 0fa8ff78a008
child 215 44ae18f7c0aa
permissions -rw-r--r--
Remote control throw mobile.

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