Determine the change in file size in lines between Subversion revisions


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. svn diff -rREV1:REV2|grep "^\(-\|+\)"|cut -b1|sort -r| \
  2. uniq -c|tr -d '\012'|tr '+-' '-\012'|sed 's/ //g'|bc

URL: http://blog.kulp.ch/2007/04/determine-change-in-file-size-in-lines.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.