Skip to content

Instantly share code, notes, and snippets.

View sylnsr's full-sized avatar
💭
Moved to: https://gitlab.com/sylnsr

Mike Mügge sylnsr

💭
Moved to: https://gitlab.com/sylnsr
  • USA
View GitHub Profile
@emattson
emattson / install_postgresql_client.sh
Last active May 15, 2022 15:10
Install postgresql-client-10 on Debian 9
# taken from https://www.postgresql.org/download/linux/debian/
# assumes you are root
echo 'deb http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main' > /etc/apt/sources.list.d/pgdg.list
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
apt-get update
yes Y | apt-get install postgresql-client-10