When I try to create multiple files with the command cpb create {a..d}.cpp everything works fine. Instead, if I launch the same command using numbers instead of characters, e.g. cpb create {1..4}.cpp, it only creates a single file named 1__4.cpp instead of 4 separate files named 1.cpp, 2.cpp, etc.
Is this a bug or the intended behavior?
When I try to create multiple files with the command
cpb create {a..d}.cpp
everything works fine. Instead, if I launch the same command using numbers instead of characters, e.g.cpb create {1..4}.cpp
, it only creates a single file named1__4.cpp
instead of 4 separate files named1.cpp
,2.cpp
, etc. Is this a bug or the intended behavior?