On Wed, 2004-03-10 at 23:51, Russell Steicke wrote:
> A perl version requires a corresponding python version:
>
> python -c "for i in range(0,26): print chr(ord('A')+i)"
And in true TIMTOWTDI fashion, another Perl version - without getting
obfuscatious :)
perl -e 'print join("\n",(A..Z))."\n"'
Ryan