List large Linux files

A way to search for files larger than a specified size.

For example, to find and list files larger than 100MB.

1
find . -xdev -type f -size +100M -exec ls -la {} \; | sort -nk 5

If you only want to know the location without knowing the exact size of each one:

1
find . -xdev -type f -size +100M