On Fri, 6 Aug 2021 at 06:03, Gary L. Roach <garyroach...@gmail.com> wrote:
> Second, why am I separating out the Path the way I am doing? I need to > check each level for existence then, if the level doesn't exist, create > the directory, cd to the directory, set chown and -x chmod. After that > check the next level and repeat the process until I run out of levels. > There are other things that need to be done with files that are similar. It sounds like you are unaware of 'mkdir -p' and 'chown -R'. They are the standard tools for this kind of task. 'chmod -R' is less useful because it does not discriminate between files and directories, I never understood why it does not offer that option, because usually we need all file permissions to not be the same as all directory permissions.