lundi 26 janvier 2015

Find big files

In the current path, find all files bigger than, let's say 10MiB  (10^7Bytes).


$ find . -type f -size +10000000c -exec ls -l {} \;