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!
but it cannot have a space between the code and the
symbol ... with spacescode
and without spacescode
– jsotola Sep 20 '20 at 00:21for letter in {a..e}; do printf "%s " {a..e} done
outputa b c d e a b c d e a b c d e a b c d e a b c d e
– user432737 Sep 20 '20 at 13:17