From ab227e2aba6a3fc279177c75d63a9c33b30da6db Mon Sep 17 00:00:00 2001 From: zleyyij Date: Thu, 30 May 2024 18:31:46 -0600 Subject: [PATCH] vault backup: 2024-05-30 18:31:46 --- IT/Scripting.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/IT/Scripting.md b/IT/Scripting.md index 0dffe3a..a70daa8 100644 --- a/IT/Scripting.md +++ b/IT/Scripting.md @@ -81,7 +81,7 @@ If using `test` or the shorthand of test (`[]`), there are a variety of binary c | `-ge` | Is greater than or equal to | | `-lt` | Is less than | | `-le` | Is less than or equal to | -The above list is +The above list is far from complete but it contains some of the more commonly used operators ## 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: @@ -105,7 +105,9 @@ while [ $i -lt 10 ]; do done echo “Done counting” ``` -### While loops + +## Functions + ## Commands | Command | Description |