blob: c7dcaa66d7f5a4e15cfacbc7f8b640ccc5ce5f52 [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
16
Robert R Evans070107a2010-10-02 15:23:57 -070017export AUTOFEATURE=true autotest
18
19function rh {
20 history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
21}