linux – 查找不属于组的文件

前端之家收集整理的这篇文章主要介绍了linux – 查找不属于组的文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何查找不属于特定组的文件
find /home -group NOT test

解决方法

找/ home -not -group测试或找/ home! – 组测试

感叹号颠倒了比赛.从男人发现:

! expr True  if  expr  is false.  This character will also usually need

 -not expr
          Same as ! expr,but not POSIX compliant.

如果你想要它所属的组在输出中:

find /home ! -group test -printf "%p:%g\n"
./lots/573:root
...

有关使用find的更多信息:
How do I master the UNIX find command?

原文链接:https://www.f2er.com/linux/402503.html

猜你在找的Linux相关文章