Bash Scripting - File Operations in Scripts
What will be the output of this script if
myfile.txt does not exist?if [ -e myfile.txt ]; then echo "Found" else echo "Not Found" fi
