Hi,
If you want to have a listing of the files sorted by size, you can use the following command(s). It will list the files in decreasing order. If you need to do the same thing recursively, you could use the second one.
ls -l | grep \^- | sort -nr -k 5 | more
ls -lR | grep \^- | sort -nr -k 5 | more
I hope this helps.
Ray