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