how to give full access +x linux all files recursive in folder code example
Example 1: how to give permission recursively in linux
chmod -R u=rwx,go=rx /tofile_path
Example 2: change permissions for specific file types linux
find . -name "*.sh" -exec chmod +x {} \;