Noob question
For example:
find /home/user/demo -type f -perm 777 -print -exec chmod 755 {} \;
I think I understand what this code does - it changes file permissions from 777 to 755 recursively. But I don't understand where the {} \;
comes from. Is that bit part of exec or find or what?
Thanks for any help.