I have an installation script that unzip
s a directory, then recursively chmod
s its contents.
I'm surprised it takes almost 10 times the time it takes to unzip, to run the following two commands:
find $dir -type f -exec chmod a+r "{}" \;
find $dir -type d -exec chmod a+rx "{}" \;
Am I doing something wrong, is there a faster way to change the chmod of all files and directories?