On Monday 28 January 2008 10:20, Bob wrote: > ... > > Can anyone suggest a simple CLI incantation to find all files larger > than, say, 500MB?
% find startingDirectory -size +500M The plus sign means "bigger than." The M suffix means units of 2^20 (1048576 bytes); A G suffix makes the units 2^30 (1073741824 bytes). If you want decimal sizes, use the actual number (e.g., 1000000) and suffix it with 'c'. Man find for more details, of course. > -- > Bob Randall Schulz -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
