From 394f6fe4829f2f6faf2dae5f14a4c3bbc3791004 Mon Sep 17 00:00:00 2001 From: zleyyij Date: Thu, 30 May 2024 18:25:46 -0600 Subject: [PATCH] vault backup: 2024-05-30 18:25:46 --- IT/Scripting.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IT/Scripting.md b/IT/Scripting.md index 33aa127..a4c9ba2 100644 --- a/IT/Scripting.md +++ b/IT/Scripting.md @@ -84,6 +84,8 @@ The above example iterates over a space separated list of items, but if you want ```bash for i in {1..10} ; do ... ; done ``` +### While loops +`while` loops operate on lists of unknown size. It will keep running until the `test` it evaluates returns false: ### While loops