Closed zeke closed 8 years ago
This is in the docs:
Is there a name for this {25..26} syntax?
{25..26}
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
{...}
echo foo{1..5}
😎
This is in the docs:
Is there a name for this
{25..26}
syntax?What piece of code is interpreting this as a range of URLs?