Skip to content

Instantly share code, notes, and snippets.

View seanburlington's full-sized avatar

Sean Burlington seanburlington

View GitHub Profile
@seanburlington
seanburlington / get_jenkins_jobs.php
Last active December 17, 2015 04:59
A small script to pull down all the jenkins job configs from a server Useful if you want to store them in version control It will create a directory structure in the same location as the fie is in - and will overwrite any existing configs if they are already present!
#!/usr/bin/php
<?php
$options = getopt("", array("server:", "login:", "ssl"));
if (!isset($options['server'])) {