root/modules/branches/2.5/findunpublished.sh

Revision 5780, 192 bytes (checked in by p_lindheimer, 5 years ago)

#2843: Add Russion tranlations

  • Property svn:executable set to *
Line 
1 #!/bin/bash
2
3 # Warning: this script is quite slow, as it does SVN log
4 #          on each directory one at a time!
5
6 for i in *; do
7   if [ -d $i ]; then
8     echo $i
9     svn log -r PREV  $i
10   fi
11 done
Note: See TracBrowser for help on using the browser.