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?
|
Bash seems to remove trailing newlines from the output of subshells. For instance:
will produce the output
Does anyone know a workaround or a way to prevent this truncation from happening? |
|||
|
|
|
If all you need is just a newline in a variable:
If you need to retain the newline, you can do this (which you show in your own answer):
Resulting in:
|
|||
|
|
|
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
This gives the proper output
|
|||
|
|
|
You can use the
will produce the output
|
|||
|
|
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) All you need to do is surround your subshell with quotes. (This works for backtick subshells too.)
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.
|
|||
|
|