Categories
What is the best way to clean a folder of files every 24 hours in Ubuntu Server?
Answer the question
In order to leave comments, you need to log in
cron script like this:
#!/bin/sh rm -rf /path/to/dir/*
crontab -e 1 0 * * * find /var/backups -delete
crontab -e
1 0 * * * find /var/backups -delete
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question