1#!/usr/bin/env sh 2 3# Example usage: 4# ./with-test-db.sh psql postgresql://pg:password@localhost:5433/postgres -c 'select 1;' 5 6dir=$(dirname $0) 7. ${dir}/_common.sh 8 9SERVICES="db_test" main "$@"