Linux - How to change permission of all files and directories, Recursively change permission of directiories

How to change permission of all files and directories


Recursive chmod all files and directories within the current directory
  # chmod -R 774 .

  # find . -print -exec chmod 777 {} \;

  # find | xargs chmod 777

The chmod command is use to change the permission of a file or a directory. The above commands will change the permission of files and directories within the current directory.

The topic on Linux - How to change permission of all files and directories is posted by - Patel

Hope you have enjoyed, Linux - How to change permission of all files and directoriesThanks for your time

Tech Bluff