Skip to content

Instantly share code, notes, and snippets.

@rblackwe
Created September 18, 2013 18:32
Show Gist options
  • Save rblackwe/6613451 to your computer and use it in GitHub Desktop.
Save rblackwe/6613451 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
use Browser::Open qw( open_browser );
use Dancer;
get '/' => sub {
my $url = param('u');
my $cmd = open_browser($url);
return $url;
};
dance;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment