configs  flgrep.fish at 6be55bde097b0244bc5f8a03034aa3efd42cd8f88b29be3278c1318920c840ca

File fish/functions/flgrep.fish artifact f706b23e61 part of check-in 6be55bde097b0244bc5f8a03034aa3efd42cd8f88b29be3278c1318920c840ca


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