xargs
How to recursively make all the folders in the current path executable without doing the same to all the files.
Man, why do I always forget this!
find -type d -print0 | xargs -0 chmod 755 |
find -type f -print0 | xargs -0 chmod 644 |
How to recursively make all the folders in the current path executable without doing the same to all the files.
Man, why do I always forget this!
find -type d -print0 | xargs -0 chmod 755 |
find -type f -print0 | xargs -0 chmod 644 |