Created
October 9, 2012 02:15
-
-
Save Songmu/3856193 to your computer and use it in GitHub Desktop.
sporkの更新検知して自動でスライド作ってくれる君
This file contains hidden or 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 perl | |
use strict; | |
use warnings; | |
use Filesys::Notify::Simple; | |
use Spork; | |
my $watcher = Filesys::Notify::Simple->new(['./Spork.slides']); | |
my $spork_command = Spork->new->load_hub->command; | |
while (1) { | |
$watcher->wait(sub { | |
$spork_command->process('-make'); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment