sticky bit

Hi frns,

What is command to list out all dir's for which sticky bit has been set.

Regards,
Manu

ls -l | grep "^.\{9\}[tT]"

here's another one

find . -type d -perm -02000 -print