fish/functions/histgrep.fish @ 7c8e9659a1c5

More
author Steve Losh <steve@stevelosh.com>
date Tue, 24 Dec 2019 13:49:47 -0500
parents 152269fc621b
children (none)
function histgrep -d "grep shell history because my brain is garbage"
    history | grep $argv | tac
end