I am working on a project where I want to print several things to one line in a .txt file with multiple echo statements. For example I would want this:
echo A
echo B
To end up looking like this:
AB
Instead of this:
A
B
How can I do this?