chmod recursive
-R, --recursive
chmod -R 755 /path/to/directory
chmod folder recursive
chmod -R MODE DIRECTORY
#Example
chmod -R 755 /var/www/html
how to give permission recursively in linux
chmod -R u=rwx,go=rx /tofile_path
change permissions for specific file types linux
find . -name "*.sh" -exec chmod +x {} \;
change file recursively
shopt -s globstar
for f in **/*.t1; do
mv "$f" "${f%.t1}.t2"
done
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us