I want to set up a folder such that anything created within it (directories, files) inherit default permissions 777. Can we set a umask for a particular directory to achieve this?
Asked
Active
Viewed 37 times
0
umask
is not a per-directory setting. It is a per-process setting, and governs only the behavior of that process and its children (unless the child process changes umask). – waltinator Mar 28 '18 at 14:09