Update checkfiles.sh

This commit is contained in:
Go Johansson (neku) 2023-01-01 13:00:23 +01:00
parent 83f3f11f98
commit 78c444daa8

View file

@ -1,2 +1,3 @@
#! /bin/sh
find /path/to/files/ -mmin +1440 -exec rm -f {} \;
hours=$((XXX*60))
find /path/to/files/ -mmin +$hours -exec rm -f {} \;