diff --git a/bash.md b/bash.md index c1a051f1e..c23453ee6 100644 --- a/bash.md +++ b/bash.md @@ -363,13 +363,15 @@ Note that `[[` is actually a command/program that returns either `0` (true) or ` | --- | --- | | `(( NUM < NUM ))` | Numeric conditions | -| Condition | Description | -| --- | --- | -| `[[ -o noclobber ]]` | If OPTIONNAME is enabled | -| --- | --- | -| `[[ ! EXPR ]]` | Not | -| `[[ X && Y ]]` | And | -| `[[ X || Y ]]` | Or | +#### More conditions + +| Condition | Description | +| -------------------- | ------------------------ | +| `[[ -o noclobber ]]` | If OPTIONNAME is enabled | +| --- | --- | +| `[[ ! EXPR ]]` | Not | +| `[[ X && Y ]]` | And | +| `[[ X || Y ]]` | Or | ### File conditions