Ures, nincs ilyen valtozo. Meg valamikor evekkel ezelott beallitottam egy SO topic alapjan, hogy ne torlodjon, es uj rendszereken telepites utan az egyik elso dolog, amit beallitok. Regi szokasom, hogy kommentbe beleirom, hogy mi alapjan allitottam be (ill. sokszor azt is, hogy en modositottam azt a reszt), ez alapjan aki jobban utana akar menni, megteheti.
#http://stackoverflow.com/questions/9457233/unlimited-bash-history
# Eternal bash history.
# ---------------------
# Undocumented feature which sets the size to "unlimited".
# http://stackoverflow.com/questions/9457233/unlimited-bash-history
export HISTFILESIZE=
export HISTSIZE=
export HISTTIMEFORMAT="[%F %T] "
# Change the file location because certain bash sessions truncate .bash_history file upon close.
# http://superuser.com/questions/575479/bash-history-truncated-to-500-lines-on-each-login
export HISTFILE=~/.bash_eternal_history
# Force prompt to write history after every command.
# http://superuser.com/questions/20900/bash-history-loss
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
A masik az .inputrc, ebbol a kovetkezo ket bejegyzes az erdekes:
# page up
"\e[5~": history-search-backward
# page down
"\e[6~": history-search-forward
"Keresni" ugy szoktam benne, hogy elkezdem irni, es pgup-ot nyomok.