How do I find the largest 10 files in a given directory, with Perl or Bash?
EDIT:
This prints the 10 largest files recursively from current directory.
find . -type f -printf "%s %p\n" | sort -nr | awk '{print $2}' | head -10