Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!caip!rutgers!sri-spam!nike!ucbcad!ucbvax!sdcsvax!hp-sdd!ncr-sd!ncrcae!sauron!wescott From: wescott@sauron.UUCP (Mike Wescott) Newsgroups: net.unix-wizards Subject: Re: find . -size +100000 doesn't seem to work Message-ID: <742@sauron.UUCP> Date: Tue, 14-Oct-86 10:01:29 EDT Article-I.D.: sauron.742 Posted: Tue Oct 14 10:01:29 1986 Date-Received: Mon, 20-Oct-86 22:53:15 EDT References: <2300@psuvax1.UUCP> Reply-To: wescott@sauron.UUCP (Mike Wescott) Distribution: net Organization: NCR Corp., Advanced System Development, Columbia, SC Lines: 18 Keywords: find bug In article <2300@psuvax1.UUCP> ehrlich@psuvax1.UUCP (Dan Ehrlich) writes: > I have been trying to use find to locate files larger than a given size > in our /usr/spool/mail directory. Running as root the following command > is issued: > # find /usr/spool/mail -size +100000 -print > No output is generated. Can someone give me a hint as to what is going > on? The man page says that "+n" means "more than n". This is correct, but the 4.2BSD manual also says: -size n True is the file is n blocks long. 100000 blocks long means roughly 51Mb in the file. A very big file. System V find allows the number to be followed by the letter "c" indicating that the size is in characters, not blocks. -- -Mike Wescott ncrcae!wescott