Ashus.ashus.net

Full Version: Delete old uploads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
To automatically delete older uploads, use this and add the script to your cron. +7 means files need to be older than 7 days, files beginning with a dot and a folder "up" is ignored.

Code:
#!/bin/sh

IFS=$'\n'
for s in $(find /var/www/files/upload/ -type f -mtime +7 -exec echo {} \; | egrep -v "/var/www/files/upload/(\.|up/)")
    do
    rm "$s"
    done