Created
July 12, 2013 20:13
-
-
Save mlbright/5987414 to your computer and use it in GitHub Desktop.
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 perl | |
use 5.016; | |
use JenkinsRC; | |
my $jenkins = JenkinsRC->new( url => $ENV{'JENKINS_URL'} ); | |
my @jobs = @ARGV; | |
for my $job (@jobs) { | |
my $def = $jenkins->get($job); | |
say $def; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment