mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
112941cc72
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
5 lines
110 B
Bash
5 lines
110 B
Bash
#!/bin/sh
|
|
|
|
find /var/spool/squirrelmail/attach/ -type f -mtime +30 -print0 |
|
|
xargs -0 rm -f >/dev/null 2>&1
|
|
|