diff --git a/content/en/posts/bash_cheatsheet.md b/content/en/posts/bash_cheatsheet.md index 7fb656e..1aebdda 100644 --- a/content/en/posts/bash_cheatsheet.md +++ b/content/en/posts/bash_cheatsheet.md @@ -128,16 +128,18 @@ else fi ``` # Conditions -| Operator | Description | -|----------|----------------------| -| -eq | Equal | -| -lt | Less than | -| -ge | Greater than | -| == | 2 Strings equal | -| != | 2 Strings not equal | -| ! | Statement is false | -| -d | Directory is present | -| -e | File is present | +| Operator | Description | +|----------|--------------------------| +| -eq | Equal | +| -lt | Less than | +| -le | Less than or equal to | +| -gt | Greater than | +| -ge | Greater than or equal to | +| == | 2 Strings equal | +| != | 2 Strings not equal | +| ! | Statement is false | +| -d | Directory is present | +| -e | File is present | ## Condition Usage Examples ``` bash