Skip to content

Instantly share code, notes, and snippets.

View felubra's full-sized avatar
🏠
Working from home

Felipe Lube de Bragança felubra

🏠
Working from home
View GitHub Profile
@felubra
felubra / sqlite3_backup.sh
Last active July 16, 2018 09:32 — forked from sdellis/sqlite3_backup.sh
sqlite3 database backup script with .backup command and compression
#!/bin/bash
#
# sqlite3_backup.sh
# Script for backing up and compress a sqlite3 database, using the .backup command
# Intended for use with cron for regular automated backups
#
# @author @felubra https://github.com/felubra
# based on the original sqlite3_backup.sh script by shaune@princeton.edu
# (https://gist.github.com/sdellis/3835123)