Skip to content

Instantly share code, notes, and snippets.

@vegetabill
vegetabill / gist:9508ac10b933d582b9f8
Last active August 29, 2015 14:01
you can use this js snippet on Go.CD the env variables page
$ = jQuery;
$('#variables').find('tr').each(function(idx, tr) { console.log("export " + $(tr).find('.environment_variable_name').val() + "=" + $(tr).find('.environment_variable_value').val()); });