#!/usr/bin/env bash # Delete files in specified folder, older than "older_than" (in days) find $cleanup_folder -type f -atime +$older_than -print -exec rm {} \;