max-mapper/nugget

How does the curly-brace expansion work?

zeke opened this issue · 2 comments

zeke commented

This is in the docs:

multiple

Is there a name for this {25..26} syntax?

What piece of code is interpreting this as a range of URLs?

bash expands the {...} syntax into multiple arguments. try running echo foo{1..5} fx

zeke commented

😎