From 997b584c405f5df4c3657e795d29fe24b7952fc6 Mon Sep 17 00:00:00 2001 From: zleyyij Date: Thu, 30 May 2024 18:23:46 -0600 Subject: [PATCH] vault backup: 2024-05-30 18:23:46 --- IT/Scripting.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IT/Scripting.md b/IT/Scripting.md index fe44e4f..ef90322 100644 --- a/IT/Scripting.md +++ b/IT/Scripting.md @@ -75,12 +75,12 @@ esac ### 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: ```bash - THINGS="thingone thingtwo thingthree" -for S in $THINGS; do - echo "Doing something to $S" +for THING in $THINGS; do + echo "Doing something to $THING" done ``` + ### While loops ## Commands