Curly braces are very helpful for grouping several commands together
Be careful with the syntax: 1. there must be whitespace after the opening brace 2. there must be a semicolon after the last command and before the closing brace
Another practical use case: test something || { echo message; exit 1; }