Skip to content

Instantly share code, notes, and snippets.

@ilumos
Last active December 18, 2019 21:32
Show Gist options
  • Save ilumos/74b0dcd0f412c457db6062e4cb8bf46a to your computer and use it in GitHub Desktop.
Save ilumos/74b0dcd0f412c457db6062e4cb8bf46a to your computer and use it in GitHub Desktop.
Only keep the last 28 days of backups
#!/bin/bash
find backups/ -ctime +28 -name "*.tar.gz" -print -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment