OR statements
Similar to double &, but this one, the rhs runs if the lhs fails
cmd || printf "%b" "cmd failed. You're on your own\n"
These are different:
cmd || printf "%b" "FAILED.\n" ; exit 1 #always exits
cmd || { printf "%b" "FAILED.\n" ; exit 1 ; } #exits on failure