Skip to content

Instantly share code, notes, and snippets.

@ssbostan
Created May 3, 2020 15:52
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ssbostan/2f4618c192cc0335e2154283dba1bc1b to your computer and use it in GitHub Desktop.
Save ssbostan/2f4618c192cc0335e2154283dba1bc1b to your computer and use it in GitHub Desktop.
Create a backup and Delete old backups
#!/bin/bash
tar -zcf /backups/backup-$(date +%Y%m%d).tar.gz --absolute-names /data
rm -f /backups/backup-$(date -d 'now - 7 days' +%Y%m%d).tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment