Saturday, July 9, 2022

[SOLVED] How to CHMOD all folders in folder mac?

Issue

is there a way to execute chmod(777) on all subfolders in the folder "Folder"? Thanks


id='dv4'>

Solution

Yes, you can use find for this:

find Folder -type d -exec chmod 0777 {} +


Answered By - dorian
Answer Checked By - Timothy Miller (WPSolving Admin)