change permission for folder to not read or write linux code example
Example 1: linux give permission to folder
sudo chmod -R a+rwx /path/to/folder
Example 2: change permissions for specific file types linux
find . -name "*.sh" -exec chmod +x {} \;