root/modules/branches/2.10/findunpublished.sh
| Revision 5780, 192 bytes (checked in by p_lindheimer, 5 years ago) | |
|---|---|
| |
| 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.
