You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fixsvnprops.sh 397B

1234567891011121314
  1. #!/bin/bash
  2. for i in $(find . -name \*.java)
  3. do
  4. svn pg svn:keywords $i | grep Id > /dev/null || svn ps svn:keywords "Id" $i
  5. done
  6. for i in $(find . -name \*.xml)
  7. do
  8. svn pg svn:keywords $i | grep "Revision Id" > /dev/null || svn ps svn:keywords "Revision Id" $i
  9. done
  10. find . -name \*.java -exec svn ps svn:eol-style native '{}' \;
  11. find . -name \*.xml -exec svn ps svn:eol-style native '{}' \;