如何查找系统中具有s权限的文件(____)。
A.find . -type f ( -perm -04000 -o -perm -02000 ) -exec ls -lg {} ;
B.find . -type f ( -perm -02000 -o -perm -04000 ) -exec ls -lg {} ;
C.find . -type f ( -perm -04000 -o -perm -02000 ) -exec ls -lg;
D.find . -type -f ( -perm -04000 -o -perm -02000 ) -exec ls -lg {} ;
正确答案是A