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

This commit is contained in:
zleyyij 2024-05-30 18:23:46 -06:00
parent 3ffea3c144
commit 997b584c40

View File

@ -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