Skip to content

Instantly share code, notes, and snippets.

@kontza
Created November 9, 2022 08:09
Show Gist options
  • Save kontza/86c1f9607e313f73b5e979e61296a671 to your computer and use it in GitHub Desktop.
Save kontza/86c1f9607e313f73b5e979e61296a671 to your computer and use it in GitHub Desktop.
Extract DB specs from .pgpass and open a psql session there
#!/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