Answers for "change permissions of file for all users linux"

15

how to change permissions on a file in linux

sudo chmod -R ugo+rwx /file/path
Posted by: Guest on May-08-2020
1

change permissions for specific file types linux

find . -name "*.sh" -exec chmod +x {} \;
Posted by: Guest on July-15-2020

Code answers related to "change permissions of file for all users linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language