1
1
Fork 0

Add flgrep.fish

This commit is contained in:
Jonathan Schleifer 2020-08-18 21:20:23 +00:00
parent 428a8eaf62
commit bdfce892e4

View file

@ -0,0 +1,8 @@
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