commit | 3fc60b5358dae05d89327ce1a52f6013eafee537 | [log] [tgz] |
---|---|---|
author | Eitan Adler <lists@eitanadler.com> | 周二 4月 17 00:24:58 2012 -0400 |
committer | Eitan Adler <lists@eitanadler.com> | 周二 4月 17 00:24:58 2012 -0400 |
tree | 8de0837e0dbd062d551e2b65d97e148db5a8b368 | |
parent | a74279df5ca49488d0f2b3990e5598c2dc704c91 [diff] [blame] |
Fix bogus bash binary location
diff --git a/lib/history.bash b/lib/history.bash index c0f60f2..92db21f 100644 --- a/lib/history.bash +++ b/lib/history.bash
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # append to bash_history if Terminal.app quits shopt -s histappend @@ -17,4 +17,4 @@ function rh { history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head -} \ No newline at end of file +}