Answers for "chmod using find in bash"

0

chmod using find in bash

find /target-folder -type d -exec chmod 0755 {} \;
find /target-folder -type f -exec chmod 0644 {} \;
Posted by: Guest on September-15-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language