I'm logged into a remote server using putty ssh. The problem is that keyboard keys are not working as I was expecting. I'm talking about directional keys and tab.
TAB is working as in MS Windows, but in CLI, I need the auto-complete feature.
Can you help me with some advices?
UPDATE: on ps - p $$ it says that I'm using sh.
ps -p $$. Also, your title is misleading. – Khaled Dec 11 '11 at 15:24echo $SHELLto find out what shell you're using. – ott-- Dec 11 '11 at 17:42echo $0orps -p $$show you the shell you are currently running.echo $SHELLshows your login shell which may not be your current shell. – Iain♦ Dec 11 '11 at 18:51