回答:
find /home -not -group test
または find /home ! -group test
感嘆符は一致を反転します。からman find
:
! 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の使用に関する詳細情報:
UNIXのfindコマンドをマスターするにはどうすればよいですか?