blob: 41e9e3f5d1fb8965ee770ea407d62d55a59b8844 [file] [log] [blame]
Fred Drake6942e571998-11-24 17:38:49 +00001#! /bin/sh
2#
3# Script to fix general entities that got translated from the LaTeX as empty
4# elements. Mostly pretty bogus, but works like a charm!
Fred Drake3d5e2c01998-11-30 22:30:29 +00005#
6# Removes the leading XML PI that identifies the XML version, since most of
7# the XML files are not used as top-level documents.
Fred Drake6942e571998-11-24 17:38:49 +00008
9if [ "$1" ]; then
10 exec <"$1"
11 shift 1
12fi
13
14if [ "$1" ]; then
15 exec >"$1"
16 shift 1
17fi
18
Fred Drake6038f541999-01-14 21:44:56 +000019sed '
Fred Drake87dfd3c1998-11-30 14:36:26 +000020s|<geq/>|\&ge;|g
Fred Drake87dfd3c1998-11-30 14:36:26 +000021s|<leq/>|\&le;|g
Fred Drakec1663311998-12-10 04:56:00 +000022s|<geq>|\&ge;|g
Fred Drakec1663311998-12-10 04:56:00 +000023s|<leq>|\&le;|g
Fred Drake6942e571998-11-24 17:38:49 +000024' || exit $?