Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say a variable:

word="Hi there, how are you?"

How would I print it so that the output would be:

Hi
there,
how
are
you?

So far, I've only learn the grep, cut, find, tr commands

share|improve this question

3 Answers

Using bash:

word="Hi there, how are you?"
for i in $word; do echo $i; done

or, with tr:

echo $word | tr ' ' '\n'
share|improve this answer
Thank you. I prefer your first one. – Phumb Dec 3 '12 at 1:51
With bash, you can use a here-string: tr ' ' '\n' <<< "$word" – glenn jackman Dec 3 '12 at 2:53
            echo $word|awk '{for(i=1;i<NF+1;i++) printf("%s\n", $i)}'

Also work well, pls have a try.

share|improve this answer
printf "%s\n" $word

the format specifier will be re-used until all tokens are consumed

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.