find all setuid or setgid files

By paragasu


#find / -type f \( -perm -4000 -o -perm -2000 \) -exec ls -ld '{}' \;

How do I find all setuid and setgid files?

Tags: , , ,

Leave a Reply