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?

相关文章

Linux中的ARP防火墙主要用于防御ARP欺骗攻击,其效果取决于多...
insmod和modprobe加-f参数导致Invalid module format错误 这...
将ArchLinux安装到U盘 几个月前入门Arch的时候上网搜了不少安...
1、安装Apache。 1)执行如下命令,安装Apache服务及其扩展包...
一、先说一下用ansible批量采集机器信息的实现办法: 1、先把...
安装配置 1. 安装vsftpd 检查是否安装了vsftpd # rpm -qa | ...