configs  flgrep.fish at [4c9e4c1a37]

File fish/functions/flgrep.fish artifact 28dced9f2a part of check-in 4c9e4c1a37


function flgrep
    set -l ret
    fossil changes --all . | sed 's/^.*  //' | while read file
        grep -H $argv "$file" && set ret 0
        test $status -gt 1 && return $status
    end
    return $ret
end