Skip to content

Instantly share code, notes, and snippets.

@while0pass
Created July 8, 2012 21:34
Show Gist options
  • Save while0pass/3072929 to your computer and use it in GitHub Desktop.
Save while0pass/3072929 to your computer and use it in GitHub Desktop.
list al the logins for svn repo committers
svn log --quiet | grep "^r[0-9]" | awk '{print $3}' | sort | uniq
svn log --quiet | awk '/^r[0-9]/ {print $3}' | sort | uniq
svn log --quiet | awk '/^r[0-9]/ {print $3}' | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment