This file contains 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
WARNING: Could not source script '/Users/douglasjarquin/.rvm/scripts/base', file does not exist. RVM will likely not work as expected. | |
WARNING: Could not source script '/Users/douglasjarquin/.rvm/scripts/version', file does not exist. RVM will likely not work as expected. | |
WARNING: Could not source script '/Users/douglasjarquin/.rvm/scripts/selector', file does not exist. RVM will likely not work as expected. | |
WARNING: Could not source script '/Users/douglasjarquin/.rvm/scripts/cd', file does not exist. RVM will likely not work as expected. | |
WARNING: Could not source script '/Users/douglasjarquin/.rvm/scripts/cli', file does not exist. RVM will likely not work as expected. | |
WARNING: Could not source script '/Users/douglasjarquin/.rvm/scripts/override_gem', file does not exist. RVM will likely not work as expected. | |
cat: /Users/douglasjarquin/.rvm/VERSION: No such file or directory | |
scripts/rvm: line 128: __rvm_conditionally_add_bin_path: command not found |
This file contains 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
rm -rf ~/.rvm/ |
This file contains 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/local/lib/rvm -v |
This file contains 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
if [[ -s ~/.rvm/scripts/rvm ]] ; then source ~/.rvm/scripts/rvm ; fi |
This file contains 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
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" |
This file contains 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
ln -s /Users/...../Library/Application\ Support/Navicat\ for\ MySQL /Users/...../Dropbox/Library/Application\ Support |
This file contains 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
sudo gem install s3sync |
This file contains 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
export AWS_ACCESS_KEY_ID="....." | |
export AWS_SECRET_ACCESS_KEY="....." |
This file contains 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
s3sync -v -r --progress --exclude=".svn" --exclude=".DS_Store" --exclude="Library/Caches" --delete ~/ my_backup_bucket:/ |
This file contains 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
alias backup='s3sync -v -r --progress --exclude=".svn" --exclude=".DS_Store" --exclude="Library/Caches" --delete ~/ my_backup_bucket:/' |