Skip to content

Instantly share code, notes, and snippets.

@cruzer45
Last active December 21, 2015 07:29
Show Gist options
  • Save cruzer45/6271765 to your computer and use it in GitHub Desktop.
Save cruzer45/6271765 to your computer and use it in GitHub Desktop.
Subversion - One liner script to list all files touched by a specific user.
svn log -v -r{2013-08-01}:HEAD | awk '/^r[0-9]+ / {user=$3} /./ {if (user=="mrogers") {print}}' | grep -E "^ M|^ G|^ A|^ D|^ C|^ U" | awk '{print $2}' | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment