In bash, how I can display the content of a file with multiple lines as a single string where new lines appears as \n
.
Example:
$ echo "line 1
line 2" >> file.txt
I need to get the content as this "line 1\nline2"
with bash commands.
I tried using a combinations of cat/printf/echo
with no success.