Skip to content

Instantly share code, notes, and snippets.

@sirbrillig
sirbrillig / pgsql_backup.sh
Last active July 16, 2024 11:41 — forked from dangerousbeans/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