📜  bash try catch - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:15.046000             🧑  作者: Mango

代码示例1
{
# Try
} || {
# Executed when above fails
}
{
# Do stuff
} && {
# Only executed when above worked
}