File indexing completed on 2024-05-12 04:43:09

0001 #!/bin/sh
0002 
0003 # Formats all .kreport files in the same dir with 1 spaces of indentation.
0004 # Reports namespace and misplaced tag/quotes errors.
0005 
0006 cd `dirname $0`
0007 for fname in `find . -name \*.kreport` ; do
0008     tmp=`mktemp -u $fname.XXXXXXXX`
0009     XMLLINT_INDENT=" " xmllint --format $fname --output $tmp && mv $tmp $fname
0010 done