#!/bin/bash
# Set the directory path
DIR=./
# Remove folders older than two days
find $DIR/* -type d -mtime +2 -exec rm -rf {} \;