Clustering, web development and general middleware gotchas
for t in *; do if cd $t; then pwd; svn propset svn:ignore "$t.iml `svn propget svn:ignore`" .; cd ..; fi; done;
if you have a more complicated maven project with many levels deep:find . -name "pom.xml" | while read i; dosvn propset svn:ignore "*.iml `svn propget svn:ignore`" `dirname $i`; done;
Oh... thanks!PS: Pleased to know this helped someone!
Post a Comment
2 comments:
if you have a more complicated maven project with many levels deep:
find . -name "pom.xml" | while read i; do
svn propset svn:ignore "*.iml `svn propget svn:ignore`" `dirname $i`;
done;
Oh... thanks!
PS: Pleased to know this helped someone!
Post a Comment