You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
❯ printf %d 07
7⏎
❯ printf %d 08
08: value not completely converted (can't convert '8')
0⏎
❯ printf %d 09
09: value not completely converted (can't convert '9')
0⏎
❯ printf %d 10
10⏎
So for i in (seq -w 1 10); printf "%d\n" $i; end prints:
❯ for i in (seq -w 1 10); printf "%d\n" $i; end
1
2
3
4
5
6
7
08: value not completely converted (can't convert '8')
0
09: value not completely converted (can't convert '9')
0
10
fish, version 3.5.0
So
for i in (seq -w 1 10); printf "%d\n" $i; endprints: