#!/bin/sh

#
# A simple .SF2 editor
#

/usr/lib/awe/sf2text $1 > /tmp/$$.tmp-text
if [ "$EDITOR" != "" ]; then
	$EDITOR /tmp/$$.tmp-text
else
	/usr/bin/editor /tmp/$$.tmp-text
fi
rm -f /tmp/$$.tmp-text

# End of file.
