Delete old files and create a temp directory

travelly-project

Get rid all old files

#!/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 {} +;