14 lines
209 B
Bash
14 lines
209 B
Bash
#!/bin/sh
|
|
|
|
while true; do
|
|
date -uR
|
|
|
|
find "/tmp/data/" \
|
|
-type d \
|
|
-and -not -path "/tmp/data/" \
|
|
-and -not -newermt "-900 seconds" \
|
|
-exec rm -r {} +
|
|
|
|
sleep 60
|
|
done
|