#!/bin/sh tmpfile=`mktemp` || exit 1 cat >$tmpfile unzip -p $tmpfile content.xml \ | sed -e 's|]*>||g' \ | sed -e 's|\"|"|g' rm $tmpfile