Advertisement
Guest User

Untitled

a guest
Aug 18th, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 KB | None | 0 0
  1. #!/bin/zsh
  2.  
  3. TAG_FROM=v2.065.0
  4. TAG_TO=v2.066.0
  5.  
  6. function stream_authors() {
  7.     local DIR=$1
  8.     (
  9.         cd $DIR && \
  10.         { git log $TAG_FROM..$TAG_TO | grep '^Author:' } || \
  11.         echo >&2 "Failed: $DIR"
  12.     )
  13. }
  14.  
  15. cat <(stream_authors phobos) <(stream_authors dlang.org) \
  16.         <(stream_authors druntime) <(stream_authors dmd) \
  17.         <(stream_authors tools) <(stream_authors installer) | \
  18.     tee >(sort | uniq | wc -l) | wc -l
  19.  
  20. # Not for the time being:
  21. # <(stream dconf.org) \
  22. #     <(stream dub) <(stream dub-registry) <(stream visuald)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement