Skip to content

Instantly share code, notes, and snippets.

View talhasch's full-sized avatar

Talha talhasch

View GitHub Profile
@talhasch
talhasch / pgsql_backup.sh
Created May 19, 2020 07:49 — forked from sirbrillig/pgsql_backup.sh
Postgresql daily backup script.
#!/bin/bash
#
# Backup a Postgresql database into a daily file.
#
BACKUP_DIR=/pg_backup
DAYS_TO_KEEP=14
FILE_SUFFIX=_pg_backup.sql
DATABASE=
USER=postgres