I would like to output a file's contents appended with a string without creating a new line.
so far my command places the appended string on a new line:
sed -e 'a foo' file.txt
>> file contents...
>> foo
I want the output to look like this:
>> file contents...foo