root/tags/release-0.13.4/pfixcore/projects/checkfiles.sh

Revision 1667, 0.6 KB (checked in by jenstl, 8 years ago)

*** empty log message ***

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1#!/bin/sh
2
3export CLASSPATH=`ls \`pwd\`/../lib/*.jar | xargs echo | sed -e 's/ /:/g'`:`pwd`/../build
4export LANG=C
5
6find . -type f | grep "/txt/" | grep "\.xml$"  > .ALLINCFILES
7find . -type f | grep "/img/" | grep "\.\(gif\|jpg\|jpeg\|JPG\|JPEG\)$"  > .ALLIMAGES
8find . -type f | grep "depend.xml$"  > .ALLPROJECTS
9
10java -mx500M de.schlund.pfixcore.util.CheckIncludes CHECKOUTPUT.xml .ALLPROJECTS .ALLINCFILES .ALLIMAGES
11java -mx500M com.icl.saxon.StyleSheet  CHECKOUTPUT.xml core/build/unused.xsl  > UnusedInfo.txt
12java -mx500M com.icl.saxon.StyleSheet  CHECKOUTPUT.xml core/build/cleanup.xsl > Cleanup.xml
13
Note: See TracBrowser for help on using the browser.