configs  Artifact [f706b23e61]

Artifact f706b23e612e2c46288c6229b7a55356d49322df542f09e13039d5bf418756c0:


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