ignore DOT and LOG files
[project-aon.git] / common / scripts / list-file-sizes.sh
index 3e58a00..1b92073 100755 (executable)
@@ -3,7 +3,8 @@
 #   all the files to be found
 # Usage: list-file-sizes.sh bookcode
 
+du -h `find . -path "*xhtml-less-simple*$1"`
 find . -name "$1.*" \
-    | grep -v "\.svn\|\.xml" \
+    | grep -v "\.svn\|\.xml\|\.dot\|\.log" \
     | xargs ls -lh \
     | awk '{print $5 "\t" $9}'