$ PS1="[\h:\W] # "
$ history -d NN
$ cat .profile
alias kubectl='minikube kubectl --'
source <(kubectl completion bash)
...
. ~/.bashrc
...
$ cat .bashrc
...
export HISTCONTROL=ignorespace:ignoredups:erasedups
#unset HISTFILE
HISTSIZE=20000
HISTFILESIZE=20000
# export PATH="$PATH:/opt/mssql-tools/bin"
alias ssn2='ssh node2'
scn2() {
scp $1 node2:$1
}
...
$ source .bashrc
# (echo '"\e[A": history-search-backward'; echo '"\e[B": history-search-forward') >> /etc/inputrc
или
$ cat .inputrc
"\e[A": history-search-backward
"\e[B": history-search-forward
$ bind -f .inputrc