Show and delete (cache) files older than a year on linux

Montag, 11. März 2019, 10:52 Uhr | roberto@vasquez-angel.de |

Show the files:

find ~/.cache/ -depth -type f -atime +365 

Delete them:

find ~/.cache/ -type f -atime +365 -delete