Running a server with Ubuntu 18.04
I am attempting to run this command every 10 minutes in crontab on the directory /var/www/html:
find . -type f -name "*.maintenance" -delete
Is this the correct syntax to accomplish this?
*/10 * * * * /var/www/html find . -type f -name "*.maintenance" -delete