I found some old notes where someone suggest I run the following command to set some file permissions:
find /perl/lib/ -type f -exec chmod o+r \{\} \;
Would you happen to know what the \{\}
part of the statement is doing? Is it even necessary? I tested running it a few times on some test files and it seems to do the same thing as removing the backslashes:
find /u01/app/oracle/product/12102/perl/lib/ -type f -exec chmod o+r {} \;
Any help you can offer would be appreciated.