vault backup: 2024-05-30 18:30:46

This commit is contained in:
zleyyij 2024-05-30 18:30:46 -06:00
parent 2bce7bf0d7
commit dfe1034f5e

View File

@ -74,10 +74,14 @@ esac
If using `test` or the shorthand of test (`[]`), there are a variety of binary comparison operators you can make use of: If using `test` or the shorthand of test (`[]`), there are a variety of binary comparison operators you can make use of:
| Operator | Description | | Operator | Description |
| -------- | ----------- | | -------- | --------------------------- |
| `-eq` | Is equal to | | `-eq` | Is equal to |
| `-ne` | is not eq | | `-ne` | Is not equal to |
| `-gt` | Is greater than |
| `-ge` | Is greater than or equal to |
| `-lt` | Is less than |
| `-le` | Is less than or equal to |
The above list is
## Loops ## Loops
### For loops ### For loops
`for` loops are used when you have a finite collection over which you want to iterate, such as a list of files, or a list of server names: `for` loops are used when you have a finite collection over which you want to iterate, such as a list of files, or a list of server names: