Skip to content

Instantly share code, notes, and snippets.

View kbussche's full-sized avatar

Kurt kbussche

  • Nevada
View GitHub Profile
@ericelliott
ericelliott / getenv.js
Created November 9, 2012 00:54
dump environment settings to console from node
var env = process.env;
Object.keys(env).forEach(function(key) {
console.log('export ' + key + '="' + env[key] +'"');
});