I have
var="a b c"
for i in $var
do
p=`echo -e $p'\n'$i`
done
echo $p
I want last echo to print
a
b
c
Notice that I want the variable p to contain newlines. How do I do that?
|
feedback
|
|
I have completed my answer thanks to @GordonDavisson, @Dolda2000 and @tripleee. Inserting
|
This doesn't actually embed newlines, it embeds \n, which the echo -e converts to newlines as it prints. Depending on your actual goal, this may or may not do the trick. – Gordon Davisson Feb 4 at 17:52 |
|
Thank you very much @GordonDavisson. You are right! I have then updated my answer to insert a real new lines. To thank you I have upvoted a very good answer from you. Cheers. See you ;-) – oHessling Feb 4 at 20:49 |
|
You've got a missing double quote; the third last code line should be p="$p"$'\n'"$i" – l0b0 Feb 6 at 14:37 |
|
Yep @l0b0, you have very good eagle eyes ;-) Next time I will help you to improve your answer :-D Thanks – oHessling Feb 6 at 21:14 |
|
Try If you want to store it in a variable and then use it with the newlines intact, you will have to quote your usage correctly:
Or, to fix your example program literally:
| |||||||||
feedback
|
|
The trivial solution is to put those newlines where you want them.
Yes, that's an assignment wrapped over multiple lines. | |||
|
feedback
|
\\n? – Codemonkey Feb 4 at 8:20