Bash Scripting - Conditionals
What will be the output of this script snippet?
file="test.txt" if [ -f "$file" -a ! -r "$file" ]; then echo "File exists but not readable" else echo "Condition not met" fi
