I want this output: a b c d e
When I try:
for letter in {a..e}; do
echo $letter
done
I get this output:
a
b
c
d
e
I tried this:
for letter in {a..e}; do
echo -e "\t$letter"
done
Output:
a
b
c
d
e
It only transfers it to whole line to next tab!