[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Is there an easy way to generate all English letters?
From: |
Bernhard Voelker |
Subject: |
Re: Is there an easy way to generate all English letters? |
Date: |
Sun, 05 Oct 2014 11:13:43 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.1.0 |
On 10/05/2014 04:08 AM, Peng Yu wrote:
seq can generate numbers easily. Is there an easy way to generate all
English letters that anybody knows?
Incidentally, Assaf Gordon has recently proposed a patch for exactly
this feature. Discussion at:
http://lists.gnu.org/archive/html/coreutils/2014-06/msg00090.html
Unfortunately, it hasn't made it into the Git repository yet.
Until then, and if it's only about English letters, you can use
your shell to expand all letters:
$ bash -c 'echo {a..z}'
a b c d e f g h i j k l m n o p q r s t u v w x y z
Have a nice day,
Berny