Switch to unified view

a b/scripts/findAnnotations.sh
1
DIR=$1
2
KEYWORD='glom'
3
4
echo -e "scanning directory\t$DIR" >&2
5
6
find $DIR -type f  -name "*.xml" -print0 | \
7
    xargs -r0 -P2 grep -nHil -m1 $KEYWORD | \
8
    sed "s|$DIR||"
9