an_command || { error "Cannot execute an_command. Exit code: $?." return 1 }
Always wrap variables with double quotes, unless you really need to parse variable value by bash. Use arrays, when you need to pass multiple arguments. And so on.
an_command || { error "Cannot execute an_command. Exit code: $?." return 1 }
Always wrap variables with double quotes, unless you really need to parse variable value by bash. Use arrays, when you need to pass multiple arguments. And so on.