You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
248 B

#!/bin/bash
source src/g.bash
g::log::enable file g.log
g::log::setLevel internal
g::info "Starting try-catch..."
try {
ls -lah baddir
} catch {
declare local error="$?"
g::error "Error code: $error"
}
g::info "After try-catch..."