source: tags/arb-6.0.4/HELP_SOURCE/xml_2_depends.sh

Last change on this file was 10842, checked in by westram, 11 years ago
  • Property svn:executable set to *
File size: 208 bytes
Line 
1#!/bin/bash -u
2
3XSLTPROC=$1 ; shift
4STYLESHEET=$1 ; shift
5XSLTPROCARGS="$@"
6
7while read LINE; do
8    for XML in $LINE; do
9        $XSLTPROC --stringparam xml $XML $XSLTPROCARGS $STYLESHEET $XML
10    done
11done
Note: See TracBrowser for help on using the repository browser.