6 lines
110 B
Plaintext
6 lines
110 B
Plaintext
![]() |
#!/bin/sh
|
||
|
|
||
|
find /var/spool/squirrelmail/attach/ -type f -mtime +30 -print0 |
|
||
|
xargs -0 rm -f >/dev/null 2>&1
|
||
|
|