Skip to content

Instantly share code, notes, and snippets.

View AustinBGibbons's full-sized avatar

Austin Gibbons AustinBGibbons

  • periscopedata.com
  • San Francisco
View GitHub Profile
@nabucosound
nabucosound / heroku_env_copy.sh
Created December 30, 2013 12:40
Script to copy environment variables from an existing heroku app to another one
#!/bin/bash
# Source: http://blog.nonuby.com/blog/2012/07/05/copying-env-vars-from-one-heroku-app-to-another/
set -e
sourceApp="$1"
targetApp="$2"
while read key value; do