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