fish/functions/histgrep.fish @ 5c6597e57071

More
author Steve Losh <steve@stevelosh.com>
date Wed, 28 Aug 2019 09:50:26 -0400
parents 152269fc621b
children (none)
function histgrep -d "grep shell history because my brain is garbage"
    history | grep $argv | tac
end