Bash Scripting - Conditionals
Consider this script snippet:
What will it print if
if [ -x ./script.sh ]; then echo "Executable"; else echo "Not executable"; fi
What will it print if
script.sh exists but is not executable?