Thanks :) Quoting "Radoulov, Dimitre" <cichomitiko@xxxxxxxxx>:
Baptiste Daroussin wrote:I'd like to get a sequence of letter in the same way as we can get a sequence of numbers in zsh :$ echo {04..10} 04 05 06 07 08 09 10 but for letters : $ echo {a..n} . a n[setopt braceccl] print {a-n} Dimitre