#!/bin/bash
# Fix the Macromedia Flash Player plugin to run properly in Opera - JeR 2007

FILE="/opt/netscape/plugins/libflashplayer.so"

if test -f ${FILE}; then
	echo " * Fixing ${FILE} ..."
	sed -e 's|netscape|JeRJeRJe|g' -i ${FILE} && echo " * Done!"
else
	echo " * Could not find ${FILE}"
fi

