Kann man so etwas machen find -perm g=u
? Ich sage "Gefällt mir", weil -perm mode
der Modus die Angabe aller Bits erfordert, nicht nur g
, und weil ich nicht u
auf die rechte Seite von setzen kann =
, wie ich es mit dem chmod
Befehl kann:
you can specify exactly one of the letters ugo: the permissions granted
to the user who owns the file (u), the permissions granted to other
users who are members of the file's group (g), and the permissions
granted to users that are in neither of the two preceding categories
(o).
Im Moment mache ich find | xargs -d \\n ls -lartd | egrep '^.(...)\1
das einfach nur hässlich.
Vielen Dank.
-printf
Genie!