I want to make all files (and directories) under a certain directory world readable without having to chmod each file on its own. it would be great if there is an option to also do this recursively (look under folders and chmod 666 all files under it)
I want to make all files (and directories) under a certain directory world readable
Share
man 3 chmodcontains the information you are looking for.the
-Roption tellschmodto operate recursively.