Faça a navegação no diretório do Bash como o Explorer

Adicione o seguinte ao seu .bashrc para percorrer sua pilha de diretórios como o Windows Explorer. Ou seja, altere os diretórios com as teclas alt + cursor.

# Map <Alt + CursorKey> bindings to unused keys, then map
# the unused keys to functions. (You can also use "cat -A" or
# "<Ctrl-V><Keys>" to dump the key sequences. There's no
# builtin termcap in infocmp / tput AFIK.)
bind
'"e[1;3A":"201"' && bind -x '"201":pushd ..' # Alt Up
bind
'"e[1;3C":"203"' && bind -x '"203":pushd -0' # Alt Rt
bind
'"e[1;3B":"202"' && bind -x '"202":popd' # Alt Dn
bind
'"e[1;3D":"204"' && bind -x '"204":pushd +1' # Alt Lt