4 lines
156 B
Bash
Executable file
4 lines
156 B
Bash
Executable file
#!/bin/bash
|
|
|
|
find /var/lib/php/sessions -mmin +1440 -type f -print0 | xargs -0 rm -f
|
|
find /var/lib/php/uploads -mmin +1440 -type f -print0 | xargs -0 rm -f
|