152269fc621b

linux
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Sun, 10 Jun 2018 09:10:38 -0700
parents 007f30aca83d
children 6a1fee9ca8cb
branches/tags (none)
files fish/functions/histgrep.fish

Changes

--- a/fish/functions/histgrep.fish	Sun Jun 10 09:10:03 2018 -0700
+++ b/fish/functions/histgrep.fish	Sun Jun 10 09:10:38 2018 -0700
@@ -1,3 +1,3 @@
 function histgrep -d "grep shell history because my brain is garbage"
-    history | grep $argv | gtac
+    history | grep $argv | tac
 end