> > One way would be to cd to / and type
> > find -name suid*
> 
>       I mean I need to locate files with SUID BIT, not "suid" inside
> their names...

To find all SUID and SGID files:

        # find / -type f \( -perm -4000 -o -perm -2000 \) -print

Dave



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
         To unsubscribe: mail [EMAIL PROTECTED] with 
                       "unsubscribe" as the Subject.

Reply via email to