Fedora Remix maintained by the Rochester Institute of Technology (RIT) Linux Users Group, targeted at users new to Linux and RIT students, faculty, and staff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
212 B

#!/bin/sh
# This script will replace the omni.jar in the /usr/lib/firefox-6/ with
# the one in /usr/lib/firefox-6/omni-backup/
su
pushd /usr/lib/firefox-6/
rm omni.jar
cp omni-backup/omni.jar omni.jar
popd
exit