in reply to Re: Unix Utilities for Win32 (OT)
in thread finding top 10 largest files
You might have luck with this pipeline
du -a | sort -nr | head -10
which would give the top 10 files recursively found below the directory this command is issued from. The cross-platform GNU utilities would list the top-ten files.