#!/bin/bash
#                                        030109/vk
# On some platforms 'convert' is broken
# and is not able to read xpm files that
# end with
#   ..."};
# Most Metview icons are written like that!
# 'sed' is used to break the last line into:
#   ..."
# };
# Command-line options:
# $1 - the input file
# $2 - the output file

sed -e 's/"};/"\
};/' $1 > $2

