Eric wrote:
> I am trying to delimit the number of programs that have SUID permission.
> Following a friendly recommendation, I found the programs that have SUID by:
>
> find / -type f -perm -u+s -or -perm -g+s
I thought you needed to bracket that:
find / -type f \( -perm -u+s -or -perm -g+s \)
But no matter :-)
>
> I attempted to change SUID on some of the results, again following a
> suggestion:
>
> chmod -s file
[ results in error for some files]
Probably because the files are immutable.
What operating system are you using?
-Matt