How to write this file?
Its purpose is to output on the same line without starting a new line.
For example:
echo a >t.txt
Then there is a line in t.txt showing a.
Now the problem is,
echo b >t.txt
b starts a new line in file t.txt. Then how to make it display immediately after a, that is:
ab
Its purpose is to output on the same line without starting a new line.
For example:
echo a >t.txt
Then there is a line in t.txt showing a.
Now the problem is,
echo b >t.txt
b starts a new line in file t.txt. Then how to make it display immediately after a, that is:
ab
