Skip to content

Instantly share code, notes, and snippets.

@sdmoko
sdmoko / pgsql_backup.sh
Created January 24, 2018 06:31 — 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