bash: ./filename.sh: Permission denied code example
Example 1: permission denied running shell script
`# Try:`
chmod +rx script.sh
`# This will make the file executable. Then try:`
./script.sh
Example 2: permission denied bash
chmod -R +x folder/*
# give execution permission for all scripts in the directory