Skip to content

Instantly share code, notes, and snippets.

@Songmu
Created October 9, 2012 02:15
Show Gist options
  • Save Songmu/3856193 to your computer and use it in GitHub Desktop.
Save Songmu/3856193 to your computer and use it in GitHub Desktop.
sporkの更新検知して自動でスライド作ってくれる君
#!/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