Re: Scanning for large files
pk wrote:
> You have GNU find, thus
>
> find /start/dir -iname '*.pdf' -size 5M
>
> otherwise:
>
> find /start/dir -name '*.pdf' -size 5242880c
Ok, sorry but it seems today I leave out pieces without realizing it.
Add a "+" in front of each size argument.
--
All the commands are tested with bash and GNU tools, so they may use
nonstandard features. I try to mention when something is nonstandard (if
I'm aware of that), but I may miss something. Corrections are welcome.
|