teste se o arquivo é executável bash
if [ -x file ]; then
./file
else
echo "File is not executable"
fi
Alert Alligator
if [ -x file ]; then
./file
else
echo "File is not executable"
fi