This commit is contained in:
Oliver
2025-10-10 14:32:35 -03:00
parent 09c46d4a8c
commit 5fe0fd6028
5 changed files with 32 additions and 1 deletions

8
app/sbin/cleanTmp Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
while true; do
find /tmp -type f -atime +2 -delete
find /tmp -type d -empty -delete
sleep 1d
done