aboutsummaryrefslogtreecommitdiff
path: root/send-refresh.sh
blob: d57647fd914c276c0571f9e698b45adf991e71be (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

# Recursively delete directories by age (14 days)
find /path/to/base/dir/* -type d -ctime +14 -exec rm -rf {} \;