#!/bin/sh # sxw2text - Copyright 2004 MJ Ray mjr at dsl.pipex.com # I grant you permission to do any act restricted by copyright with this file # Treat it like PD. I don't care about these 7 shell lines. # A voluntary credit, a link and an email would be cool. # Absolutely no warranty, provided as-is, use at own risk. if [ -e content.xml ] ; then echo Not overwriting content.xml in current directory >&2 exit 127 fi miniunz "$1" content.xml 1>&2 && \ sed -e 's/<[^>]*>/\ /g;s/<//g;s/'/'"'"'/g;s/"/"/g;s/&/\&/g' content.xml \ | fmt -s | cat -s rm content.xml