<div dir="auto"><div>Yeah, I mean, "cache" is just cache. I think critical data files are stored elsewhere. </div><div dir="auto"><br></div><div dir="auto">You can delete files based on time (last modified) time. </div><div dir="auto"><br></div><div dir="auto"><a href="https://www.man7.org/linux/man-pages/man1/find.1.html" rel="noreferrer noreferrer" target="_blank">https://www.man7.org/linux/man-pages/man1/find.1.html</a><br></div><div dir="auto"><br></div><div dir="auto">The section about "Tests" will cover the mtime and other useful flags.</div><div dir="auto"><br></div><div dir="auto">You can pair that with "-exec rm -f '{}' " to blindly remove them.</div><div dir="auto"><br></div><div dir="auto">find '<span style="font-size:12.8px">/home/joe/.cache/google-chrome' -type f -mtime +7 </span>-exec rm -f '{}' \; </div><div dir="auto"><br></div><div dir="auto">That's what I got from memory and typing on my phone, in bed, LOL. If that's not it, then it'll get you really close, but I think that's a good command.</div><div dir="auto"><br></div><div data-smartmail="gmail_signature">--<br>Thanks,<br>Alexander<br><br>Sent from my Google Pixel 7 Pro</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, Aug 4, 2024, 18:19 joe--- via PLUG-discuss <<a href="mailto:plug-discuss@lists.phxlinux.org" rel="noreferrer noreferrer noreferrer" target="_blank">plug-discuss@lists.phxlinux.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">How crucial are the thousands of cache<br>
files cluttering up our computers?<br>
<br>
/home/joe/.cache/google-chrome/Default<br>
drwx 3   4096 Apr  4 2019 Storage       empty<br>
drwx 4   4096 Jan 21 2020 Code Cache/js 6290 files<br>
drwx 3 471040 Jan 24 2022 Cache<br>
/.cache/google-chrome/Default/Cache/Cache_Data<br>
*** 14197 files from 2023 to a week ago.<br>
<br>
Is there any risk in deleting all this clutter?<br>
<br>
What is the command syntax to selectively delete<br>
files between certain dates and/or all those<br>
older than a certain date?<br>
<br>
== searching for advice, I found this:<br>
<a href="https://www.zdnet.com" rel="noreferrer noreferrer noreferrer noreferrer noreferrer" target="_blank">https://www.zdnet.com</a> › Business › Google<br>
Apr 3, 2020 — These hidden cache files are<br>
bloating your Google Chrome. Google Chrome<br>
could be storing a hundred thousand cached<br>
files on your computer ...<br>
Q: Is it safe to delete Google cache files?<br>
A: Clearing your browser cache does not<br>
delete those excess files.<br>
by: zdnet ~ April 3, 2020<br>
=====<br>
<br>
---------------------------------------------------<br>
PLUG-discuss mailing list: <a href="mailto:PLUG-discuss@lists.phxlinux.org" rel="noreferrer noreferrer noreferrer noreferrer" target="_blank">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="https://lists.phxlinux.org/mailman/listinfo/plug-discuss" rel="noreferrer noreferrer noreferrer noreferrer noreferrer" target="_blank">https://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><br>
</blockquote></div>