Using bash I can easily create a number of directories at once with this syntax: mkdir test{1..10}
However, with the fish shell this does not work.
How can I create multiple directories at once with the fish shell?
Fish does not support the {x..y} range expansion syntax.
Instead just use seq, like
mkdir test(seq 1 10)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With