Created
October 24, 2015 13:30
-
-
Save skypenguins/b5a488c238939246e18e to your computer and use it in GitHub Desktop.
command.txtを読み込んでrtmpdumpを起動するバッチファイル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem | |
rem 「command.txt」を読み込んでrtmpdumpを起動するだけ | |
rem | |
rem このバッチが存在するフォルダをカレントディレクトリに | |
pushd %0\.. | |
cls | |
for /f "tokens=1* delims=: eol=" %%X in ('findstr /n "^" command.txt') do ( | |
start %%Y | |
) | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment