root/10kz/setprops.sh

Revision 42, 170 bytes (checked in by jm3, 2 years ago)

developer script to propset +Id on any "textual" file - uses file, find, and xargs to identify these files

  • Property svn:executable set to *
  • Property svn:keywords set to Id
Line 
1 #!/bin/sh
2
3 echo setting +Id property on text files
4 find . -type f | grep -v svn | xargs -n1 file | grep -i text | sed "s/:.*//" | xargs -n1 svn propset svn:keywords "Id"
Note: See TracBrowser for help on using the browser.