(Grav GitSync) Automatic Commit from RealStickman

This commit is contained in:
RealStickman 2022-06-25 11:42:44 +02:00 committed by GitSync
parent 37b1490202
commit 5cafd8ba2d

View File

@ -0,0 +1,37 @@
---
title: Fish
---
[toc]
## For loop
### Iterating over number sequence
`for i in (seq 1 10); echo $i; end`
Output:
```
1
2
3
4
5
6
7
8
9
10
```
If you want all numbers to be padded to equal lengths use the `-w` flag with `seq`
`for i in (seq -w 1 10); echo $i; end`
Output:
```
01
02
03
04
05
06
07
08
09
10
```