Prueba si el archivo es bash ejecutable
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