Search found 1 match

by coaster
Fri Nov 20, 2015 4:19 pm
Forum: Other Issues
Topic: Alternative to 'Find' in BusyBox
Replies: 1
Views: 3141

Alternative to 'Find' in BusyBox

Hi, I'm trying to run a cron job that deletes webcam images uploaded to the USB storage after 4 days. I've used a command on DD-WRT and Ubuntu that has worked: 0 0 * * * * find /tmp/dev/sda1/camera *.jpg -type f -mtime +4 -exec rm {} \; but it looks like the BusyBox version of 'Find' on Gargoyle doe...