Можно ли сделать что-то вроде find -perm g=u
? Я говорю "как" , потому что -perm mode
режим требует , чтобы указать все биты, а не только g
и потому , что я не могу поставить u
на правой стороне =
как я могу с помощью команды chmod
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).
На данный момент я делаю find | xargs -d \\n ls -lartd | egrep '^.(...)\1
что просто ужасно.
Благодарю.