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
ZSH | |
=============== | |
- Typo correction: | |
crl google.com | |
- Really smart completion | |
kill [tab] | |
ls - [tab S] | |
- History accross sessions |
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
if [ $# -eq 0 ] ; then | |
echo "No args given" | |
echo "Missing Heroku app name" | |
exit 1 | |
fi | |
APP_NAME="--app ${1}" | |
echo "heroku addons:add heroku-postgresql:dev ${APP_NAME}" | |
heroku addons:add heroku-postgresql:dev ${APP_NAME} |
NewerOlder