xslt-examples/__relpipe-out-xml_xslt.sh
branchv_0
changeset 25 8e2d9b67b51c
child 29 509cac0cf411
equal deleted inserted replaced
24:094be1d761b1 25:8e2d9b67b51c
       
     1 #!/bin/bash
       
     2 
       
     3 # Relational pipes
       
     4 # Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
       
     5 #
       
     6 # This program is free software: you can redistribute it and/or modify
       
     7 # it under the terms of the GNU General Public License as published by
       
     8 # the Free Software Foundation, version 3 of the License.
       
     9 #
       
    10 # This program is distributed in the hope that it will be useful,
       
    11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
       
    13 # GNU General Public License for more details.
       
    14 #
       
    15 # You should have received a copy of the GNU General Public License
       
    16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
       
    17 
       
    18 DIR="$(dirname $0)"
       
    19 BASE="$(basename $0)"
       
    20 XSL="$DIR/$BASE.xsl"
       
    21 
       
    22 if [[ -f "$XSL" ]]; then
       
    23 	relpipe-out-xml | xsltproc "$XSL" -
       
    24 else
       
    25 	echo "unable to find XSLT template: $XSL" 1>&2
       
    26 	exit 1;
       
    27 fi