Project

General

Profile

1 1976 aaronmk
#!/bin/bash
2 378 aaronmk
# Runs a PostgreSQL command on the vegbien db
3
4
selfDir="$(dirname -- "$0")"
5
6
. "$selfDir/vegbien_dest"
7 6949 aaronmk
export PGHOST="$host" PGUSER="$user" PGPASSWORD="$password" \
8
PGDATABASE="$database"
9 378 aaronmk
10
exec "$@"