Listing files and directories writable by the group in Linux

bash, console-application, debian, linux

Solution

Something like

find /dir/ -perm /g=w 

Or, for output like ls -l

find /dir/ -perm /g=w -exec ls -lLd {} +

Problem

What's the easiest way to recursively list files in a given directory and its subdirectories, that are writable by the group which owns them? I'm using Debian 5.

Original source