X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=svn%2Fget-authors;h=54e570796692fd315a39aeb2754bba419e7e8f1d;hb=0dee6251426c78542286fd9e93b21509c9e0e74a;hp=975ef956aca7a64f25c9ab3a9fb40a32d31a22bf;hpb=38ab9e31c986f27acc4f45364bacfac18edf7bc4;p=git-scripts.git diff --git a/svn/get-authors b/svn/get-authors index 975ef95..54e5707 100755 --- a/svn/get-authors +++ b/svn/get-authors @@ -7,5 +7,9 @@ fi url="$1" +#svn log -q | +# awk -F '|' '/^r/ {sub("^ ", "", $2); sub(" $", "", $2); print $2" = "$2" <"$2">"}' | +# sort -u >>authors.txt + svn log --xml "$url" | grep -F author | sort -u | sed 's/^<[^>]\+>\(.\+\)<.\+>$/\1 = /' >>authors.txt