I want to clear all app caches mainly to reduce the size of and speed up backups. This feature has been supported in Android 4, but appears to have been removed a long time ago.
A root-only method is fine.
I want to clear all app caches mainly to reduce the size of and speed up backups. This feature has been supported in Android 4, but appears to have been removed a long time ago.
A root-only method is fine.
for cache in /data/user*/*/*/cache/*; do rm -rf "$cache"; done
. For other possible locations see https://android.stackexchange.com/a/218507/218526 – Irfan Latif Aug 08 '20 at 18:44