configs  Diff

Differences From Artifact [28dced9f2a]:

To Artifact [f706b23e61]:


1
2
3
4
5
6
7
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


|





1
2
3
4
5
6
7
8
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