Answers for "change permissions linux"

1

how to change permission of a folder linux

chmod 777 foldername 
#will give read, write, and execute permissions for everyone.
Posted by: Guest on April-06-2021
11

how to change permissions on a file in linux

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

how to set execute permission in linux

chmod -x script-name-here.sh #Change the "script-name-here" to the name of your .sh file.
Posted by: Guest on October-18-2020

Code answers related to "change permissions linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language