I find that the arrow keys don\'t work on the sqlplus console. For example if I press left arrow key, it shows like
SQL>^[[B
Does any soluti
As Johnny suggested, you can install the rlwrap utility to manage command history for any other command, including sqlplus. Another useful trick is to alias the wrapped version of sqlplus so you don't have to type rlwrap sqlplus every time.
sqlplus
rlwrap sqlplus
alias sqlplus="rlwrap sqlplus"