blob: 92db21f9dee12580f8fd7803a773b186fa69fc03 [file] [log] [blame]
Eitan Adler3fc60b52012-04-17 00:24:58 -04001#!/usr/bin/env bash
Robert R Evans76ed68d2010-10-02 12:29:17 -07002
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
Eitan Adler3fc60b52012-04-17 00:24:58 -040020}