2

I need to set out permission set to chmod -R 777 recursively for every user and group how would I can able to do it

When applying

chmod -R 777 ./

I am able to set the permission 777 for all folders and content but not other users are able to change the permission or change the content.

Tayyab Vohra
  • 1,512
  • 3
  • 22
  • 49

1 Answers1

0

Try the find command

$ find path/to/directory/ -exec chmod 777 {} \;
Ilaya Raja S
  • 415
  • 5
  • 18