About 1,580,000 results
Open links in new tab
  1. Linux - How to recursively chmod a folder? - Super User

    May 23, 2018 · How can I recursively chmod everything inside of a folder? e.g. I have a folder called var which contains many subfolders and files. How can I apply chmod 755 recursively to this folder and …

  2. linux - Chmod recursively - Stack Overflow

    184 You can use chmod with the X mode letter (the capital X) to set the executable flag only for directories. In the example below, the executable flag is cleared and then set for all directories …

  3. linux - Chmod 777 to a folder and all contents - Stack Overflow

    Nov 30, 2011 · You can also use chmod 777 * This will give permissions to all files currently in the folder and files added in the future without giving permissions to the directory itself.

  4. How to recursively chmod all directories except files?

    Jan 6, 2010 · How to chmod 755 all directories but not files (recursively)? Inversely, how to chmod only files (recursively) but no directories?

  5. How do I change permissions for a folder and its subfolders/files?

    chmod 755 -R /opt/lampp/htdocs will recursively set the permissions. There's no way to set the permissions for files automatically in only this directory that are created after you set the permissions, …

  6. Recursive chmod: rw for files, rwx for directories - Super User

    I want to chmod a lot of files and directories. As x indicates list for directories and execute for regular files I'd like to apply rw for files and rwx for directories.

  7. set permissions for all files and folders recursively

    Feb 12, 2015 · 5 Here improved version of the recursive chmod that skips files with the same permissions.

  8. changing chmod for files but not directories - Stack Overflow

    Jul 22, 2009 · You might be interested to know that you can make directories executable without making files executable (e.g. chmod -R +X, with a capital X).

  9. linux - How to chmod all folders recursively excluding all folders ...

    4 I would like to chmod all folders and subfolders within a specific folder, except I wish to exclude one folder (and all subfolders it contains). What I have so far is a hack of the following solutions from …

  10. Docker COPY recursive --chmod --chown - Stack Overflow

    Aug 25, 2022 · I am trying to recursively copy some files and directories into a Docker image. The source directory contains files and a sub-directory with some files in it. src/ ├─ subdir/ │ ├─ …