I want to create a bunch of dot files using brace expansion, but it doesn't work:
touch .{a..h}
the result is a file .{a..h} is created instead of
.a
.b
.c
...
I want to create a bunch of dot files using brace expansion, but it doesn't work:
touch .{a..h}
the result is a file .{a..h} is created instead of
.a
.b
.c
...
Maybe you have the ignorebraces enabled, so zsh do not perform brace expansion:
$ setopt ignorebraces
$ print -rl -- {1..10}
{1..10}
So try setopt noignorebraces and redo the task.