| File | Mode | Size |
|---|---|---|
| bin/ | 040000 | |
| debian/ | 040000 | |
| dist/ | 040000 | |
| man/ | 040000 | |
| src/ | 040000 | |
| tests/ | 040000 | |
| LICENSE | 100644 | 11KiB |
| Makefile.am | 100644 | 44B |
| README.md | 100644 | 2,692B |
| configure.ac | 100644 | 1,318B |
BASH History Suggest Box - http://www.youtube.com/watch?v=sPF29NyXe2U
A command line utility that brings improved BASH command completion
from the history. It aims to make completion easier and more efficient
than Ctrl-r.
hh on Ubuntu (12.10/13.04/13.10):sudo add-apt-repository ppa:ultradvorka/ppa
sudo apt-get update
sudo apt-get install hh
hh:hh --show-configuration >> ~/.bashrc
https://github.com/dvorka/hstr/releases
hh:./configure && make && make install
hh:hh --show-configuration >> ~/.bashrc
install MacPorts:
http://www.macports.org
set the environment:
env CFLAGS="-I/opt/local/include -I/usr/include" LDFLAGS="-L/opt/local/lib -L/usr/lib" ./configure
make && make install
hh:hh --show-configuration >> ~/.bashrc
hh works best with the optional configuration described in this section.
You can configure hh just by running:hh --show-configuration >> ~/.bashrc
hh to a BASH key e.g. to Ctrl-R:bind '"\C-r": "\C-ahh \C-j"'
or Ctrl-F12:
bind '"\e[24;5~":"\C-ahh \C-j"'
To determine the character sequence emitted by a pressed key in terminal,
type Ctrl-v and then press the key. Check your current bindings using:
bind -S
hh in more colors:export HH_CONFIG=hicolor
export HISTFILESIZE=10000
export HISTSIZE=${HISTFILESIZE}
Variables defined above increase the number of history items and history file size (default value is 500).
.bash_history with in-memory
history:export PROMPT_COMMAND="history -a; history -n; ${PROMPT_COMMAND}"
.bash_history
(instead of overwriting):shopt -s histappend
export HISTCONTROL=ignorespace
Suitable for a sensitive information like passwords.
https://github.com/dvorka/hstr/issues