in reply to Re: Re: finding top 10 largest files
in thread finding top 10 largest files

Amazed you replied so late! Anyway we all understand pressure....but....it is quicker to do it right the first time so you don't have to redo it later.

Glad it helped you. Perl is a real power tool on any system. On Win32 you can for example get a file grep with a one liner like:

perl -ne "print "$.\t$_" if m/whatever/" file.txt

cheers

tachyon