blob: c0f60f24f5ae7a2a8ba034203d0c86edd76b7a22 [file] [log] [blame]
Robert R Evans76ed68d2010-10-02 12:29:17 -07001#!/bin/bash
2
Robert R Evans9c7cd9a2010-10-02 11:55:34 -07003# append to bash_history if Terminal.app quits
4shopt -s histappend
5
6# history handling
7#
8# Erase duplicates
9# Bash History
10export HISTCONTROL="ignoredups"
11export HISTCONTROL=erasedups
12
13# resize history size
14export HISTSIZE=5000
15
Robert R Evans070107a2010-10-02 15:23:57 -070016export AUTOFEATURE=true autotest
17
18function rh {
19 history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
20}