permissão negada em execução shell script
`# Try:`
chmod +rx script.sh
`# This will make the file executable. Then try:`
./script.sh
Goofy Goober
`# Try:`
chmod +rx script.sh
`# This will make the file executable. Then try:`
./script.sh
chmod -R +x folder/*
# give execution permission for all scripts in the directory
# first use this command
chmod +x filename
# next use your next command. like
./filename
// permission denied ? give exeutue permissions
chmod u+x program_name
// now run program
program_name