zeke opened this issue 8 years ago · 2 comments
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}
😎