So i read the man echo info. And it says this for the n option.
-n Do not print the trailing newline character.
I can't wrap my head around what it means.
So if i try it out this is what i get
~ echo -n "12"
12%
I get a % after the argument I passed in.
Without n, stdout will not have %
~ echo "12"
12
Can anyone give practical examples, or a simpler explanation.