I have a directory where a lot of bash script or sh file exist. I want to change their permission to the 770 with the chmod command. How can I accomplish that? Thanks
Printable View
I have a directory where a lot of bash script or sh file exist. I want to change their permission to the 770 with the chmod command. How can I accomplish that? Thanks
Shouldn't it be: `$ find [directory name] -type f -name *.sh -exec chmod 770`?$find /my/bashfiles/-type d -name*.c -exec chmod 770{}\;