#!/bin/bash TRASHCAN=~/.local/share/Trash/files #Send to Trash find ~/temp/* -mtime +14 -exec mv {} $TRASHCAN \; #Delete from trash find $TRASHCAN/* -mtime +15 -exec rm {} +; find $TRASHCAN/* -type d -exec rm -rf {} +;