Find n largest files recursively

# CLI: Find first n largest files in the current directory and its sub directories

find -type f -exec du -Sh {} + | sort -rh | head -n 5