After running a dist upgrade on one of my Ubuntu 14.04 test workstations I started receiving errors after a graphical login. This should also fix remote ssh login problems as seen in http://superuser.com/questions/892658/remote-ssh-commands-bash-bind-warning-line-editing-not-enabled
8 lines
207 B
Bash
8 lines
207 B
Bash
# enter a few characters and press UpArrow/DownArrow
|
||
# to search backwards/forwards through the history
|
||
if [ -t 1 ];
|
||
then
|
||
bind '"[A":history-search-backward'
|
||
bind '"[B":history-search-forward'
|
||
fi
|