Bash Scripting - Conditionals
What will be the output of this script if
myfile.txt exists and is readable but not writable?if [ -r myfile.txt ]; then echo "Readable"; else echo "Not readable"; fi if [ -w myfile.txt ]; then echo "Writable"; else echo "Not writable"; fi
