Created
August 2, 2020 05:29
-
-
Save Shinichi-Ohki/b0405b2bcf6534645cd91d19faa37a86 to your computer and use it in GitHub Desktop.
TSP(Task Spooler)のキューに積まれたタスクが全部終わったらPush Bulletで通知を飛ばすRuby Script
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
#!/usr/bin/env ruby | |
require 'pushbullet_ruby' | |
client = PushbulletRuby::Client.new("***pushbullet Access Token***") | |
tsstr = `tsp` | |
count=[0,0,0] # running | queued | finished | |
tsstr.each_line do |line| | |
if line =~ / running / then | |
count[0] += 1 | |
p line | |
elsif line =~ / queued / then | |
count[1] += 1 | |
p line | |
elsif line =~ / finished / then | |
count[2] += 1 | |
p line | |
end | |
end | |
p count | |
if count[1] != 0 then | |
exit | |
end | |
client.push_note( | |
receiver: :device, | |
id: '***device iden***', | |
params: { | |
title: 'TSP queue clear', | |
body: "#{count[2]} tasks finished" | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment