File fish/functions/flgrep.fish artifact f706b23e61 part of check-in b3e3f764fa
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