Skip to content

Instantly share code, notes, and snippets.

@skypenguins
Created October 24, 2015 13:30
Show Gist options
  • Save skypenguins/b5a488c238939246e18e to your computer and use it in GitHub Desktop.
Save skypenguins/b5a488c238939246e18e to your computer and use it in GitHub Desktop.
command.txtを読み込んでrtmpdumpを起動するバッチファイル
@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