I'm new to programming in general and my teacher is starting me out with simple bash scripts. I would like to do the alphabet in it's own line. For example:
A
B
C
I would like to do the alphabet with out writing the entire alphabet. Ive work with numbers for example:
seq 1 3 | while read a; do
echo $a
done