Forum Discussion
How to clear up or delete disk space on mac
Deleting language files is a practical method how to clear disk space on mac without downloading any additional software. By targeting unused language packs and removing unnecessary application files, you can immediately free up storage space for your system.
Open Terminal, then run the command:
sudo find /Applications -name "*.lproj" -type d -exec rm -rf {} + 2>/dev/null
This will remove all non-English language files. It can quickly help you clean up unused app language resources, effectively reducing unnecessary disk usage, making it a reliable how to clear disk space on mac solution.
It is particularly useful for users who only use English on their Mac, want to reclaim extra space from apps, or keep their storage lean without installing cleanup tools.
Disadvantages
- If you change the system language later, some apps may not display properly or may need to be reinstalled.
- The command removes all non-English language files, so apps will not function properly even if you wish to use other languages.
- Some apps may restore their language files after an update, meaning the space saved is not permanent.