Artifact 28dced9f2aae1931d7003d34b6587b66cda9b6915e5d3dc14f536eceb2ab1fe6:
- File fish/functions/flgrep.fish — part of check-in [4c9e4c1a37] at 2020-08-18 21:20:23 on branch trunk — Add flgrep.fish (user: js, size: 210) [annotate] [blame] [check-ins using]
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