You can look at your files, sorted largest to smallest, like this:
Code:
find . -type f -ls | cut -c48- | sort -rn | sed -e 's/\\//g' | pg
I am sending the output to "pg", so it pauses after ever screen of data. Hit 'return' for the next screen, "ctrl-c" to quit.
The output from the above command is not pretty, but it is functional. Make sure to enlarge your terminal window to full screen, otherwise the lines may wrap making it a nightmare to tell what is what.