From owner-freebsd-bugs Fri Apr 14 12:45:30 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA02952 for bugs-outgoing; Fri, 14 Apr 1995 12:45:30 -0700 Received: from barkley.ME.Berkeley.EDU (barkley.ME.Berkeley.EDU [128.32.125.131]) by freefall.cdrom.com (8.6.10/8.6.6) with SMTP id MAA02946 for ; Fri, 14 Apr 1995 12:45:29 -0700 Received: by barkley.ME.Berkeley.EDU (4.1/1.42) id AA18992; Fri, 14 Apr 95 12:45:28 PDT Message-Id: <9504141945.AA18992@barkley.ME.Berkeley.EDU> From: Allyn Hardyck To: freebsd-bugs@FreeBSD.org Subject: Typo in /etc/security? Organization: Avalanche Systems Inc., NYC Date: Fri, 14 Apr 95 12:45:27 -0700 Sender: bugs-owner@FreeBSD.org Precedence: bulk So far I'm pretty psyched by the way FreeBSD 2.0 is set up and performs (although I'd still like some ideas on how to set up CAP with Native Ethertalk). When I discovered that it's configured to print a list of setuid files every day and compare it to yesterday's list, I looked for ps, just as an example. I was surprised not to find it. After some experimentation I found that the command in /etc/security: find $mount -xdev -perm -u+s -or -perm -g+s seems only to return the files that have the gid bit set and not those that have the uid or both uid and gid bits set. This seems to give the union: find $mount -xdev \( -perm -u+s -or -perm -g+s \) Why are the number of returned filenames limited to 20?