File permission of the Sh files

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.

If they all have the .sh extension you could use

chmod 770 *.sh

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.