noroute, 1 year ago You can also setup a cron job to periodically clean oldest files for you. Example: @weekly find ~/.cache -type f -mtime +7 -delete This will delete everything older than 7 days inside your cache folder.
You can also setup a cron job to periodically clean oldest files for you.
Example: @weekly find ~/.cache -type f -mtime +7 -delete
This will delete everything older than 7 days inside your cache folder.