Thread: backup HUGE
View Single Post
PMaff's Avatar
Posts: 361 | Thanked: 219 times | Joined on Sep 2010
#6
Originally Posted by tredlie View Post
indeed, most of the files are in the cache somewhere. I find it hard to believe, that there is no builtin means of flashing them.
gfind <directory where to search> -type f -size +2M -ls | grep -v "cache" | more
is probably better. You may filter other items with "grep -v ..."
and vary the size of course.

I also tried something different:
gfind ~ -type f -exec du {} \; | sort -nr | grep -v "cache" | more
This takes some time.
In my case it mostly showed larger videos. :-)