linux change permissions all files in directory code example
Example 1: change the permissions of a folder in linux
sudo chmod -R 757 <file>
Example 2: how to give permission recursively in linux
chmod -R u=rwx,go=rx /tofile_path
Example 3: give full permission to folder and subfolders in linux
linux folder