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

Bash seems to remove trailing newlines from the output of subshells. For instance:

$ echo "Newline: '$(echo $'\n')'"

will produce the output

Newline: ''

Does anyone know a workaround or a way to prevent this truncation from happening?

share|improve this question

4 Answers

up vote 3 down vote accepted

If all you need is just a newline in a variable:

nl=$'\n'

If you need to retain the newline, you can do this (which you show in your own answer):

f () { echo "hello"; }
output=$(f; echo "x")
output=${output%x}
echo "'$output'"

Resulting in:

'hello
'
share|improve this answer

After some more experimentation I found a workaround using shell variables. Basically, I make sure that the output does not end in a newline, then I strip off the added text later

output="$(echo $'\n'x )"
output="${output%x}"
echo "Newline: '$output'"

This gives the proper output

Newline: '
'
share|improve this answer

You can use the -e option to enable interpretation of backslash escapes and do it all with one echo.

$ echo -e "Newline: '\n'"

will produce the output

Newline: '
'
share|improve this answer
Thanks Andrew, but I was just using the inner echo $'\n' as an example. My actual subshell was significantly more complicated. – Quantum7 Dec 20 '10 at 1:47

This may be an old question, but it's the first result in Google for my query. (And I imagine others have stumbled upon this answer too)
I found a much more elegant solution than storing a newline in a variable.

All you need to do is surround your subshell with quotes. (This works for backtick subshells too.)

archenoth@Hathor ~ $ echo $(echo -e 'hi\nhi')
hi hi
archenoth@Hathor ~ $ echo "$(echo -e 'hi\nhi')"
hi
hi
archenoth@Hathor ~ $ 

The reason for this has nothing to do with the subshell, but rather the input of echo. You need to put input in quotes for it to recognize special characters.

archenoth@Hathor ~ $ echo -e hi\thi
hithi
archenoth@Hathor ~ $ echo -e "hi\thi"
hi  hi
archenoth@Hathor ~ $ 
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.