HN user

jofel

3 karma
Posts0
Comments1
View on HN
No posts found.
Unix tricks 13 years ago

Instead of

  find . -type d -exec chmod g+x {} \;'
you can usually use
  chmod -R g+X .
which gives additionally the group execute permission to files which have already user/everyone execute permission.