1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rubyで作ったプログラムをタスクスケジューラで定期的に実行させる

Posted at

はじめに

WindowsのRubyで作ったプログラムを、タスクスケジューラで定期的に実行させる方法です。実行間隔を5秒位に指定すると、実行コマンドを打たなくても、自動的にデバックができるので、コーディングが楽になります。

バッチファイルの解説

test.bat
@echo off
rem タスクスケジューラに登録して、5秒毎に「test.rb」を実行する
cd C:\Ruby24-x64\bin
set /a COUNT=0

:loop
powershell sleep 5
set /a COUNT=COUNT+1
echo (%COUNT%)
ruby D:\C\test.rb
goto :loop

@echo off
コマンドが表示されると見難いため、非表示にします
cd C:\Ruby24-x64\bin
Rubyが入っているパスに移動します
set /a COUNT=0
カウンターを初期化します
powershell sleep 5
5秒単位でループさせます
set /a COUNT=COUNT+1
ループごとにカウントアップさせます
echo (%COUNT%)
ループ件数を画面表示します
ruby D:\C\test.rb
実行したいRubyのプログラムを指定します
goto :loop
:loopまで飛ばします(処理をループさせます)

実行結果

image.png

test.rbで、puts "テスト" しているので、繰り返し表示してくれます。
一時停止する時は、Ctrl+C
再開する時は、N

タスクスケジューラの登録

image.png

タスクスケジューラで、バッチのパスを指定します。実行する時は、登録したタスクを選択して、右クリックで実行するだけ。因みに、タスクスケジューラはコントロールパネルの中にあります。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?