Bash Scripting - Conditionals
What will be the output of this script snippet?
file="/etc/passwd" if [ -r "$file" ]; then echo "Readable" else echo "Not readable" fi
