lib/Tools/yxml
author haftmann
Mon, 26 Jan 2009 08:23:41 +0100
changeset 29626 6f8aada233c1
parent 29143 72c960b2b83e
child 35022 c844b93dd147
permissions -rwxr-xr-x
sorted_take, sorted_drop

#!/usr/bin/env bash
#
# Author: Makarius
#
# DESCRIPTION: simple XML to YXML converter


PRG="$(basename "$0")"

function usage()
{
  echo
  echo "Usage: isabelle $PRG"
  echo
  echo "  Convert XML (stdin) to YXML (stdout)."
  echo
  exit 1
}

function fail()
{
  echo "$1" >&2
  exit 2
}


## process command line

[ "$#" -ne 0 ] && usage


## main

exec perl -w "$ISABELLE_HOME/lib/scripts/yxml.pl"