/
Mac caching
Mac caching
Are you the kind of person who finds solace in clearing cache directories, a habit cultivated from the Windows environment where %TEMP%
reigns supreme? Fear not, fellow cache enthusiast! I've crafted a script that brings the joy of cache cleansing to your Mac, ensuring a smoother and more efficient system.
-- Clear User Cache
do shell script "find ~/Library/Caches -type f -exec rm {} +"
-- Display completion message for user cache
display dialog "User Cache Cleared Successfully!" buttons {"OK"} default button "OK"
-- Clear System Cache (requires administrator password)
do shell script "sudo find /Library/Caches -type f -exec rm {} +" with administrator privileges
-- Display completion message for system cache
display dialog "System Cache Cleared Successfully!" buttons {"OK"} default button "OK"
Eliot - I took the same idea and just did it as a shell script:
sudo rm -rf ~/Library/Caches/* /Library/Caches/*
, multiple selections available,
Related content
Computer Caching
Computer Caching
More like this
Mental Roadblocks: How Heuristics Hold Us Back from New Software
Mental Roadblocks: How Heuristics Hold Us Back from New Software
Read with this
Is your dock pad all cluttered up?
Is your dock pad all cluttered up?
More like this
Reorganize your dock efficiently
Reorganize your dock efficiently
Read with this
Caching in daily lifestyle
Caching in daily lifestyle
Read with this