A modified backup script that removes deleted files older than 30 days, from https://www.youtube.com/watch?v=tG4Tge11GOo
#!/bin/bash
rsync -rlpgoD -progress /Volumes/Storage01/pictures /Volumes/Backup01
find /Volumes/Backup01/* -mtime +30 -exec rm {} \;