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
