May I know what does it mean when a '%' appears at the end of the output when I execute my code?
For example:
Hello,World%
Added:
I'm using Mac Os X iTerm2 zsh shell.
My code
echo 'Hello,World' | tr "\n" "\000"
I added the tr command to get rid of the newline at the end.
I'm using vim so I want to get the output without the newline just like if I'm using emacs.
Thank you.