How can I get cat to add a literal line break after each line? (for echo -e to read it) in bash
root@111[~]# cat names
Joe Smith
John St. John
Jeff Jefferson
root@111 [~]# var=`cat names`;echo -e $var
Joe Smith John St. John Jeff Jefferson
I want the second command to produce output identical to the first.