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
