20 lines
371 B
Bash
20 lines
371 B
Bash
#!/bin/bash
|
|
|
|
# append to bash_history if Terminal.app quits
|
|
shopt -s histappend
|
|
|
|
# history handling
|
|
#
|
|
# Erase duplicates
|
|
# Bash History
|
|
export HISTCONTROL="ignoredups"
|
|
export HISTCONTROL=erasedups
|
|
|
|
# resize history size
|
|
export HISTSIZE=5000
|
|
|
|
export AUTOFEATURE=true autotest
|
|
|
|
function rh {
|
|
history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
|
|
} |