Created
November 9, 2022 08:09
-
-
Save kontza/86c1f9607e313f73b5e979e61296a671 to your computer and use it in GitHub Desktop.
Extract DB specs from .pgpass and open a psql session there
This file contains 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
#!/bin/sh | |
IFS=':' read -r -a PARTS <<< $(fgrep "$1" ~/.pgpass) | |
if test -n "${PARTS[3]}";then | |
psql -h ${PARTS[0]} -p ${PARTS[1]} -U ${PARTS[3]} ${PARTS[2]} | |
else | |
echo "No database defined! Cannot continue." | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment