This file contains hidden or 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
dig +short ns example.com |
This file contains hidden or 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
# Start taps server in one tab | |
taps server mysql://mysqluser@localhost/sourcedb tmpuser tmppass | |
# Create destination postgres database | |
createdb destinationdb | |
# Import into postgres database in another tab | |
taps pull postgres://postgresuser@localhost/destinationdb http://tmpuser:tmppass@localhost:500 |
This file contains hidden or 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
Bundler 1.3.5 | |
Ruby 1.9.3 (2013-02-22 patchlevel 392) [x86_64-linux] | |
Rubygems 1.8.23 | |
GEM_HOME | |
Bundler settings | |
frozen | |
Set for your local app (/var/www/app/releases/20130420233758/.bundle/config): "1" | |
path | |
Set for your local app (/var/www/app/releases/20130420233758/.bundle/config): "vendor/bundle" |
This file contains hidden or 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 sh | |
program=$(basename $0) | |
command=$1 | |
help() { | |
echo "Usage: $program <subcommand>" | |
echo "" | |
echo "Subcommands:" | |
echo " create Create an encrypted volume" |
OlderNewer