Magic words:
psql -U postgresIf run with -E flag, it will describe the underlaying queries of the \ commands (cool for learning!).
Most \d commands support additional param of __schema__.name__ and accept wildcards like *.*
| # watch files and rerun phpunit on changes | |
| phpunitwait() { | |
| while inotifywait $(find $1 -name '*.php'); | |
| do | |
| clear; | |
| phpunit --colors $2; | |
| done; | |
| } |
| before_script: | |
| - ./path/to/mongo-php-driver-installer.sh |