#!/bin/sh set -e # Volcar y eliminar todos los access logs del día anterior date=`date +%F` psql -h postgresql "${DATABASE:-sutty}" sutty < "/srv/http/_storage/${date}.psql.gz" begin; copy (select * from access_logs where created_at < '${date}') to stdout; delete from access_logs where created_at < '${date}'; commit; SQL