The following is a line from the the mysql man page when accessed from my computer running ubuntu with the gnome gui
"Command-Line Options that Affect Option-File Handling".
This line gets rendered as this:
âCommand-Line Options that Affect Option-File Handlingâ
when I ssh into the ubuntu computer from my windows computer using putty.
Why are the quotes being rendered as â's? Is there any way I can get my ssh sessions to correctly render the man pages?
EDIT
Putty already has the "Terminal-type String" set to xterm, here is my .profile:
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
I don't think that the terminal type is being overridden