An interesting little snippit to be ran that finds a file with a specific extension, and chmods them.
find $someDir -type f -name "*.$someExtension" -print0 | xargs -0 chmod $somePermissions
An interesting little snippit to be ran that finds a file with a specific extension, and chmods them.
find $someDir -type f -name "*.$someExtension" -print0 | xargs -0 chmod $somePermissions
Add new comment