Skip to content

Commit

Permalink
svn-autors.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
bavovna committed Apr 30, 2011
1 parent 0dd1de9 commit c68525b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions svn-autors.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
authors=$(svn log -q | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print $2 }' | sort | uniq)
for author in ${authors}; do
echo "${author} = EMAIL";
done

0 comments on commit c68525b

Please sign in to comment.