[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: seq feature: print letters
From: |
Bernhard Voelker |
Subject: |
Re: seq feature: print letters |
Date: |
Tue, 01 Jul 2014 10:21:22 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 |
On 06/30/2014 01:24 PM, Pádraig Brady wrote:
I notice about 45 copies of the A-Z alphabet, would it be worth introducing
aliases to avoid copies?
Hmm, what about just providing the standard A-Z alphabet,
and instead leave it up to the user if she needs a different
set (rolling over if needed)? Something like this:
$ seq -s ' ' --alpha 3
A B C
$ printf "acegikmoqsuwy" | seq -s ' ' --alpha=- 2 4
c e g
$ printf "abc" | seq -s ' ' --alpha=- 5
a b c a b
Have a nice day,
Berny
- Re: seq feature: print letters,
Bernhard Voelker <=