configs  flgrep.fish at [5ce6a066ea]

File fish/functions/flgrep.fish artifact f706b23e61 part of check-in 5ce6a066ea


function flgrep
    set -l ret
    fossil changes --all . | awk '{ print $2 }' | while read file
        grep -H $argv "$file" && set ret 0
        test $status -gt 1 && return $status
    end
    return $ret
end