How do I find files not belonging to particular group?
find /home -group NOT test
|
|
|
The exclamation inverts the match. From
If you want the group it does belong to in the output:
Some more information on using find: |
|||||||
|
|
|
Do a grep excluding the things you don't want? |
|||||
|