Bash Scripting - Error Handling
Consider this script with
set -e enabled:
#!/bin/bash set -e echo "Start" false echo "End"What will be the output when this script runs?
