F
F
FYWY2020-11-30 19:35:51
linux
FYWY, 2020-11-30 19:35:51

What is the best way to clean a folder of files every 24 hours in Ubuntu Server?

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

2 answer(s)
S
Sand, 2020-11-30
@FYWY

cron
script like this:

#!/bin/sh
rm -rf /path/to/dir/*

S
Sanes, 2020-11-30
@Sanes

crontab -e
1 0 * * * find /var/backups -delete

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question